You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2013/04/24 21:53:21 UTC

svn commit: r1471617 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexReader.java

Author: mikemccand
Date: Wed Apr 24 19:53:20 2013
New Revision: 1471617

URL: http://svn.apache.org/r1471617
Log:
fix typo in comment

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

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexReader.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexReader.java?rev=1471617&r1=1471616&r2=1471617&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexReader.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexReader.java Wed Apr 24 19:53:20 2013
@@ -418,7 +418,7 @@ public abstract class IndexReader implem
    * it again.
    * This key must not have equals()/hashCode() methods, so "equals" means "identical". */
   public Object getCoreCacheKey() {
-    // Don't can ensureOpen since FC calls this (to evict)
+    // Don't call ensureOpen since FC calls this (to evict)
     // on close
     return this;
   }
@@ -427,7 +427,7 @@ public abstract class IndexReader implem
    * so FieldCache/CachingWrapperFilter can find it again.
    * This key must not have equals()/hashCode() methods, so "equals" means "identical". */
   public Object getCombinedCoreAndDeletesKey() {
-    // Don't can ensureOpen since FC calls this (to evict)
+    // Don't call ensureOpen since FC calls this (to evict)
     // on close
     return this;
   }