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/01/15 14:43:42 UTC

svn commit: r1433410 - /lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/search/FuzzyQuery.java

Author: mikemccand
Date: Tue Jan 15 13:43:42 2013
New Revision: 1433410

URL: http://svn.apache.org/viewvc?rev=1433410&view=rev
Log:
fix minimumSimilarity -> maxEdits in javadocs

Modified:
    lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/search/FuzzyQuery.java

Modified: lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/search/FuzzyQuery.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/search/FuzzyQuery.java?rev=1433410&r1=1433409&r2=1433410&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/search/FuzzyQuery.java (original)
+++ lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/search/FuzzyQuery.java Tue Jan 15 13:43:42 2013
@@ -96,7 +96,7 @@ public class FuzzyQuery extends MultiTer
   
   /**
    * Calls {@link #FuzzyQuery(Term, int, int, int, boolean) 
-   * FuzzyQuery(term, minimumSimilarity, prefixLength, defaultMaxExpansions, defaultTranspositions)}.
+   * FuzzyQuery(term, maxEdits, prefixLength, defaultMaxExpansions, defaultTranspositions)}.
    */
   public FuzzyQuery(Term term, int maxEdits, int prefixLength) {
     this(term, maxEdits, prefixLength, defaultMaxExpansions, defaultTranspositions);