it was bugging me, ok

This commit is contained in:
Joseph Montanaro 2022-01-10 11:29:06 -08:00
parent e8d2f16c9e
commit b446288ad2

View File

@ -48,7 +48,7 @@ proc loadWords*(path: string): Dictionary =
continue continue
result.words.add(word) result.words.add(word)
for _ in 0..<(25 - word.len): for _ in 0 ..< (25 - word.len):
result.words.add(' ') result.words.add(' ')