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 2015/02/04 23:31:10 UTC

svn commit: r1657436 - /lucene/dev/branches/branch_5x/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java

Author: mikemccand
Date: Wed Feb  4 22:31:10 2015
New Revision: 1657436

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

Modified:
    lucene/dev/branches/branch_5x/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java

Modified: lucene/dev/branches/branch_5x/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java?rev=1657436&r1=1657435&r2=1657436&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java (original)
+++ lucene/dev/branches/branch_5x/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java Wed Feb  4 22:31:10 2015
@@ -252,7 +252,7 @@ public class TestFlushByRamOrCountsPolic
       DocumentsWriterPerThreadPool threadPool = new DocumentsWriterPerThreadPool(
           numThreads[i]== 1 ? 1 : 2);
       iwc.setIndexerThreadPool(threadPool);
-      // with such a small ram buffer we should be stalled quiet quickly
+      // with such a small ram buffer we should be stalled quite quickly
       iwc.setRAMBufferSizeMB(0.25);
       IndexWriter writer = new IndexWriter(dir, iwc);
       IndexThread[] threads = new IndexThread[numThreads[i]];