doc: typo

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@984582 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2010-08-11 21:13:21 +00:00
parent 75e34cdba9
commit 92f4310c11
1 changed files with 2 additions and 2 deletions

View File

@ -63,14 +63,14 @@ public abstract class TermsEnum {
/** Seeks to the specified term. Returns SeekStatus to
* indicate whether exact term was found, a different
* term was found, or EOF was hit. The target term may
* be befor or after the current term. */
* be before or after the current term. */
public final SeekStatus seek(BytesRef text) throws IOException {
return seek(text, true);
}
/** Seeks to the specified term by ordinal (position) as
* previously returned by {@link #ord}. The target ord
* may be befor or after the current ord. See {@link
* may be before or after the current ord. See {@link
* #seek(BytesRef)}. */
public abstract SeekStatus seek(long ord) throws IOException;