summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2017-04-22 11:47:34 -0700
committerGitHub <noreply@github.com>2017-04-22 11:47:34 -0700
commiteb95a0ab3f9a2b8e202cc8480b5af7fb9ec1942e (patch)
treed83d0397e20e441ec2f7e32bc39b5316a584605c
parent8fd0183c51cd519c1f298e8a0c60b741a285e3db (diff)
parentbeae27cf141e362ad2b057090bc35d0f8de8fdd9 (diff)
downloadasync-eb95a0ab3f9a2b8e202cc8480b5af7fb9ec1942e.tar.gz
Merge pull request #1412 from Nolanus/master
Fix typo
-rw-r--r--lib/asyncify.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asyncify.js b/lib/asyncify.js
index 96eea54..9292070 100644
--- a/lib/asyncify.js
+++ b/lib/asyncify.js
@@ -20,7 +20,7 @@ import initialParams from './internal/initialParams';
* @method
* @alias wrapSync
* @category Util
- * @param {Function} func - The synchronous funuction, or Promise-returning
+ * @param {Function} func - The synchronous function, or Promise-returning
* function to convert to an {@link AsyncFunction}.
* @returns {AsyncFunction} An asynchronous wrapper of the `func`. To be
* invoked with `(args..., callback)`.