You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2012/09/21 17:17:57 UTC

svn commit: r1388550 - /lucene/dev/trunk/lucene/suggest/src/java/org/apache/lucene/search/spell/HighFrequencyDictionary.java

Author: jpountz
Date: Fri Sep 21 15:17:56 2012
New Revision: 1388550

URL: http://svn.apache.org/viewvc?rev=1388550&view=rev
Log:
Fix javadoc typo.

Modified:
    lucene/dev/trunk/lucene/suggest/src/java/org/apache/lucene/search/spell/HighFrequencyDictionary.java

Modified: lucene/dev/trunk/lucene/suggest/src/java/org/apache/lucene/search/spell/HighFrequencyDictionary.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/suggest/src/java/org/apache/lucene/search/spell/HighFrequencyDictionary.java?rev=1388550&r1=1388549&r2=1388550&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/suggest/src/java/org/apache/lucene/search/spell/HighFrequencyDictionary.java (original)
+++ lucene/dev/trunk/lucene/suggest/src/java/org/apache/lucene/search/spell/HighFrequencyDictionary.java Fri Sep 21 15:17:56 2012
@@ -46,7 +46,7 @@ public class HighFrequencyDictionary imp
    * Creates a new Dictionary, pulling source terms from
    * the specified <code>field</code> in the provided <code>reader</code>.
    * <p>
-   * Terms appearing in less than <code>thres</code> percentage of documents
+   * Terms appearing in less than <code>thresh</code> percentage of documents
    * will be excluded.
    */
   public HighFrequencyDictionary(IndexReader reader, String field, float thresh) {