You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2015/04/04 17:36:17 UTC

svn commit: r1671274 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java

Author: rmuir
Date: Sat Apr  4 15:36:17 2015
New Revision: 1671274

URL: http://svn.apache.org/r1671274
Log:
fix typo

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java?rev=1671274&r1=1671273&r2=1671274&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java Sat Apr  4 15:36:17 2015
@@ -84,7 +84,7 @@ public abstract class TwoPhaseIterator {
   }
 
   /** Return whether the current doc ID that the iterator is on matches. This
-   *  method should only be called when the iterator is positionned -- ie. not
+   *  method should only be called when the iterator is positioned -- ie. not
    *  when {@link DocIdSetIterator#docID()} is {@code -1} or
    *  {@link DocIdSetIterator#NO_MORE_DOCS} -- and at most once. */
   public abstract boolean matches() throws IOException;