javadoc: fix confusing terminology

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1089836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-04-07 11:50:14 +00:00
parent 1e79dd3a57
commit 528a4b806a
1 changed files with 2 additions and 2 deletions

View File

@ -219,7 +219,7 @@ public class Builder<T> {
add(scratchIntsRef, output);
}
/** Sugar: adds the UTF32 chars from char[] slice. FST
/** Sugar: adds the UTF32 codepoints from char[] slice. FST
* must be FST.INPUT_TYPE.BYTE4! */
public void add(char[] s, int offset, int length, T output) throws IOException {
assert fst.getInputType() == FST.INPUT_TYPE.BYTE4;
@ -237,7 +237,7 @@ public class Builder<T> {
add(scratchIntsRef, output);
}
/** Sugar: adds the UTF32 chars from CharSequence. FST
/** Sugar: adds the UTF32 codepoints from CharSequence. FST
* must be FST.INPUT_TYPE.BYTE4! */
public void add(CharSequence s, T output) throws IOException {
assert fst.getInputType() == FST.INPUT_TYPE.BYTE4;