From 4b4541dd9949bfaf5f09665ae009d77fea62ca7c Mon Sep 17 00:00:00 2001 From: Fletcher Boyd Date: Thu, 5 Sep 2013 00:25:46 +0800 Subject: [PATCH] things look better in threes. --- plugins/spellcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/spellcheck.py b/plugins/spellcheck.py index 3c0ac9d..244ec9f 100755 --- a/plugins/spellcheck.py +++ b/plugins/spellcheck.py @@ -20,7 +20,7 @@ def spell(inp): for x in words: is_correct = dictionary.check(x) suggestions = dictionary.suggest(x) - s_string = '/'.join(suggestions[:2]) + s_string = '/'.join(suggestions[:3]) if is_correct: out.append(x) else: