diff options
| author | Matthew Bergman <[email protected]> | 2010-05-16 18:59:13 -0400 |
|---|---|---|
| committer | Matthew Bergman <[email protected]> | 2010-05-16 18:59:13 -0400 |
| commit | a941dfd8041da332331ec2e98d57dc35f9c2bcd6 (patch) | |
| tree | b9bacfc71e197e53e735ea06a96f540d81c86564 | |
| parent | 52e9f0522544f26a2c5af9b6ec3cc106e1f15af5 (diff) | |
| download | faker-a941dfd8041da332331ec2e98d57dc35f9c2bcd6.tar.xz faker-a941dfd8041da332331ec2e98d57dc35f9c2bcd6.zip | |
fixed typo in lorem
| -rw-r--r-- | lib/lorem.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lorem.js b/lib/lorem.js index 4b0afad6..338d510c 100644 --- a/lib/lorem.js +++ b/lib/lorem.js @@ -34,7 +34,7 @@ exports.sentences = function(paragraphCount){ if( typeof paragraphCount == 'undefined'){ var paragraphCount = 3;} var paragraphs = []; for(paragraphCount; paragraphCount >= 0; paragraphCount--){ - paragraphs.push(this.sentence()); + paragraphs.push(this.paragraph()); } return paragraphs.join("\n \r\t"); }; |
