lib/ffaker/lorem_fr.rb in ffaker-2.0.0 vs lib/ffaker/lorem_fr.rb in ffaker-2.1.0

- old
+ new

@@ -8,10 +8,10 @@ def word WORDS.sample end def words(num = 3) - WORDS.random_pick(num) + WORDS.sample(num) end def sentence(word_count = 4) s = words(word_count + rand(6)) s = s.join(' ')