Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafal Wrzochol committed Jun 19, 2013
1 parent d1a5ee2 commit 8c80e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/textii.js
Expand Up @@ -89,7 +89,7 @@ function textii(text, options) {
};

textii.prototype.clean_words = function(indexed_words, callback) {
predicate = function(key) {
var predicate = function(key) {
var valid_length = (key.length >= self.options.min_word_length),
stopword = (self.stopwords.check(key));
return valid_length && !stopword;
Expand Down

0 comments on commit 8c80e09

Please sign in to comment.