typo fix in javadoc

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@159229 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2005-03-28 11:14:33 +00:00
parent 0bcd9a04f4
commit ccc027faba
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ public final class Term implements Comparable, java.io.Serializable {
return compareTo((Term)other);
}
/** Compares two terms, returning a negative integer iff this
term belongs before the argument, zero iff this term is equal to the
argument, and a positive integer iff this term belongs after the argument.
/** Compares two terms, returning a negative integer if this
term belongs before the argument, zero if this term is equal to the
argument, and a positive integer if this term belongs after the argument.
The ordering of terms is first by field, then by text.*/
public final int compareTo(Term other) {