things look better in threes.

This commit is contained in:
Fletcher Boyd 2013-09-05 00:25:46 +08:00
parent d5a5237fb8
commit 4b4541dd99

View file

@ -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: