From c27480daf853f765ce30465ecacf5158d240022a Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Wed, 4 Feb 2015 22:31:28 +0000 Subject: [PATCH] fix typo in comment git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657437 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java b/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java index 189e0e39bb4..0a1433a075f 100644 --- a/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java +++ b/lucene/core/src/test/org/apache/lucene/index/TestFlushByRamOrCountsPolicy.java @@ -252,7 +252,7 @@ public class TestFlushByRamOrCountsPolicy extends LuceneTestCase { 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]];