Fixed typo in promisify.md

This commit is contained in:
Daniel Ramos
2017-12-13 10:29:34 +00:00
parent fd4597560d
commit b74ba8bbfc
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
### Promisify
Creates a promise version of the given callback-style function. In Node 8+, you
Creates a promisified version of the given callback-style function. In Node 8+, you
can use [`util.promisify`](https://nodejs.org/api/util.html#util_util_promisify_original)
```js