You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2010/08/11 23:13:21 UTC

svn commit: r984582 - /lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/TermsEnum.java

Author: yonik
Date: Wed Aug 11 21:13:21 2010
New Revision: 984582

URL: http://svn.apache.org/viewvc?rev=984582&view=rev
Log:
doc: typo

Modified:
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/TermsEnum.java

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/TermsEnum.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/TermsEnum.java?rev=984582&r1=984581&r2=984582&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/TermsEnum.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/TermsEnum.java Wed Aug 11 21:13:21 2010
@@ -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;