You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by di...@apache.org on 2010/04/29 19:53:13 UTC

svn commit: r939401 - /lucene/lucene.net/trunk/C#/contrib/SpellChecker.Net/SpellChecker.Net/Spell/SpellChecker.cs

Author: digy
Date: Thu Apr 29 17:53:12 2010
New Revision: 939401

URL: http://svn.apache.org/viewvc?rev=939401&view=rev
Log:
LUCENENET-360 Spellchecker method misnamed "accuraty"
SetAccuraty --> SetAccuracy

Modified:
    lucene/lucene.net/trunk/C#/contrib/SpellChecker.Net/SpellChecker.Net/Spell/SpellChecker.cs

Modified: lucene/lucene.net/trunk/C#/contrib/SpellChecker.Net/SpellChecker.Net/Spell/SpellChecker.cs
URL: http://svn.apache.org/viewvc/lucene/lucene.net/trunk/C%23/contrib/SpellChecker.Net/SpellChecker.Net/Spell/SpellChecker.cs?rev=939401&r1=939400&r2=939401&view=diff
==============================================================================
--- lucene/lucene.net/trunk/C#/contrib/SpellChecker.Net/SpellChecker.Net/Spell/SpellChecker.cs (original)
+++ lucene/lucene.net/trunk/C#/contrib/SpellChecker.Net/SpellChecker.Net/Spell/SpellChecker.cs Thu Apr 29 17:53:12 2010
@@ -63,7 +63,7 @@ namespace SpellChecker.Net.Search.Spell
             this.spellindex = spellindex;
         }
         /// <summary>  Set the accuracy 0 &lt; min &lt; 1; default 0.5</summary>
-        virtual public void SetAccuraty(float min)
+        virtual public void SetAccuracy(float min)
         {
             this.min = min;
         }