From ccc027faba1ccd0d6672db44dd97bb8d4f414570 Mon Sep 17 00:00:00 2001 From: Daniel Naber Date: Mon, 28 Mar 2005 11:14:33 +0000 Subject: [PATCH] typo fix in javadoc git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@159229 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/lucene/index/Term.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/lucene/index/Term.java b/src/java/org/apache/lucene/index/Term.java index b3731c87052..f1d5bad14c4 100644 --- a/src/java/org/apache/lucene/index/Term.java +++ b/src/java/org/apache/lucene/index/Term.java @@ -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) {