diff options
Diffstat (limited to 'DiscoBot/Auxiliary')
-rw-r--r-- | DiscoBot/Auxiliary/SpellCorrect.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/DiscoBot/Auxiliary/SpellCorrect.cs b/DiscoBot/Auxiliary/SpellCorrect.cs index 1b740e8..48f6a57 100644 --- a/DiscoBot/Auxiliary/SpellCorrect.cs +++ b/DiscoBot/Auxiliary/SpellCorrect.cs @@ -63,6 +63,10 @@ public double CompareExact(string s, string q) { + + s = s.ToLower(); + q = q.ToLower(); + int i, j; const double Match = 3.0; const double Gap = -2.0; |