Fix typos in descriptions

This commit is contained in:
Wojciech Maj
2017-12-18 00:51:27 +01:00
parent 997e045950
commit 4b97d1182d
8 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@ Returns an array of lines from the specified file.
Use `readFileSync` function in `fs` node package to create a `Buffer` from a file.
convert buffer to string using `toString(encoding)` function.
creating an array from contents of file by `split`ing file content line by line(each `\n`).
creating an array from contents of file by `split`ing file content line by line (each `\n`).
```js
const fs = require('fs');