From 024df3e4a093b594b964862d90d7ceecdfa62c84 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Sat, 4 Apr 2015 15:36:17 +0000 Subject: [PATCH] fix typo git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1671274 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/java/org/apache/lucene/search/TwoPhaseIterator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java b/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java index cc6d2b87d64..0da7b0e241a 100644 --- a/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java +++ b/lucene/core/src/java/org/apache/lucene/search/TwoPhaseIterator.java @@ -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;