Index: lucene/src/java/org/apache/lucene/search/DocIdSetIterator.java =================================================================== --- lucene/src/java/org/apache/lucene/search/DocIdSetIterator.java (revision 1103869) +++ lucene/src/java/org/apache/lucene/search/DocIdSetIterator.java (working copy) @@ -61,9 +61,9 @@ public abstract int nextDoc() throws IOException; /** - * Advances to the first beyond the current whose document number is greater - * than or equal to target. Returns the current document number or - * {@link #NO_MORE_DOCS} if there are no more docs in the set. + * Advances to the first document whose number is greater than or equal to + * target. Returns the current document number or {@link #NO_MORE_DOCS} + * if there are no more docs in the set. *

* Behaves as if written: * @@ -78,7 +78,7 @@ * * Some implementations are considerably more efficient than that. *

- * NOTE: when target ≤ current implementations may opt + * NOTE: when target ≤ current implementations may opt * not to advance beyond their current {@link #docID()}. *

* NOTE: this method may be called with {@link #NO_MORE_DOCS} for