Skip to content

Commit

Permalink
Fix incorrect wording in docs
Browse files Browse the repository at this point in the history
Fixes #9
  • Loading branch information
RyanZim committed Nov 19, 2018
1 parent ab4b5cd commit 60aac3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -21,7 +21,7 @@ npm install universalify

Takes a callback-based function to universalify, and returns the universalified function.

Function must take a callback as the last parameter that will be called with the signature `(error, result)`. `universalify` does not support calling the callback with more than three arguments, and does not ensure that the callback is only called once.
Function must take a callback as the last parameter that will be called with the signature `(error, result)`. `universalify` does not support calling the callback with three or more arguments, and does not ensure that the callback is only called once.

```js
function callbackFn (n, cb) {
Expand Down

0 comments on commit 60aac3c

Please sign in to comment.