Fix deprecation warning

This commit is contained in:
Preston Richey 2015-01-12 23:06:16 -06:00
parent 596f41f15f
commit 9b198c4898

View file

@ -135,10 +135,10 @@ The secondary function is the "interesting keywords" list. For example, I use th
``` ruby ``` ruby
top100 = model.keywords.take(100) top100 = model.keywords.take(100)
tokens = Ebooks::NLP.tokenize(tweet[:text]) tokens = Ebooks::NLP.tokenize(tweet.text)
if tokens.find { |t| top100.include?(t) } if tokens.find { |t| top100.include?(t) }
bot.favorite(tweet[:id]) favorite(tweet)
end end
``` ```