You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by mi...@apache.org on 2009/07/29 18:34:41 UTC

svn commit: r798974 - /lucene/java/trunk/CHANGES.txt

Author: mikemccand
Date: Wed Jul 29 16:34:40 2009
New Revision: 798974

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

Modified:
    lucene/java/trunk/CHANGES.txt

Modified: lucene/java/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/java/trunk/CHANGES.txt?rev=798974&r1=798973&r2=798974&view=diff
==============================================================================
--- lucene/java/trunk/CHANGES.txt (original)
+++ lucene/java/trunk/CHANGES.txt Wed Jul 29 16:34:40 2009
@@ -514,7 +514,7 @@
     Rutherglen, Mike McCandless)
 
 14. LUCENE-1506: Added FilteredDocIdSet, an abstract class which you
-    subclass to implement the "match" method to aceept or reject each
+    subclass to implement the "match" method to accept or reject each
     docID.  Unlike ChainedFilter (under contrib/misc),
     FilteredDocIdSet never requires you to materialize the full
     bitset.  Instead, match() is called on demand per docID.  (John