mirror of https://github.com/apache/lucene.git
Javadoc correction
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150349 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4e486c1434
commit
c67d8e8050
|
@ -83,7 +83,7 @@ final class TermInfosReader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the offset of the greatest index entry which is less than term.*/
|
/** Returns the offset of the greatest index entry which is less than or equal to term.*/
|
||||||
private final int getIndexOffset(Term term) throws IOException {
|
private final int getIndexOffset(Term term) throws IOException {
|
||||||
int lo = 0; // binary search indexTerms[]
|
int lo = 0; // binary search indexTerms[]
|
||||||
int hi = indexTerms.length - 1;
|
int hi = indexTerms.length - 1;
|
||||||
|
|
Loading…
Reference in New Issue