summaryrefslogtreecommitdiff
path: root/sources/wiki/extract_words.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sources/wiki/extract_words.rb')
-rwxr-xr-xsources/wiki/extract_words.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/wiki/extract_words.rb b/sources/wiki/extract_words.rb
index 70c483d..8f2fa16 100755
--- a/sources/wiki/extract_words.rb
+++ b/sources/wiki/extract_words.rb
@@ -71,7 +71,7 @@ class Words
@kvw.sort.uniq.each do |key, value, word|
if key != lastkey || value != lastvalue
yield lastkey, lastvalue, words.join(',')
- words = []
+ words = []
lastkey = key
lastvalue = value
else