summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia <ilia@wearebond.com>2020-08-18 16:05:43 -0700
committerGitHub <noreply@github.com>2020-08-18 16:05:43 -0700
commitaff1716608b1a0ece2fdb18e32b969ea8ed48951 (patch)
tree8580d101ad612377b8f1aee9c7f2b10a08b7e296
parent819a34b0e02c21e7f3390d70e72430d98d327d11 (diff)
downloadasync-aff1716608b1a0ece2fdb18e32b969ea8ed48951.tar.gz
V3 Docs :: Fix "unshirtAsync" typo (#1712)
-rw-r--r--lib/queue.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/queue.js b/lib/queue.js
index 61468a2..45e4e7f 100644
--- a/lib/queue.js
+++ b/lib/queue.js
@@ -29,7 +29,7 @@ import wrapAsync from './internal/wrapAsync';
* Invoke with `queue.unshift(task, [callback])`.
* @property {AsyncFunction} pushAsync - the same as `q.push`, except this returns
* a promise that rejects if an error occurs.
- * @property {AsyncFunction} unshirtAsync - the same as `q.unshift`, except this returns
+ * @property {AsyncFunction} unshiftAsync - the same as `q.unshift`, except this returns
* a promise that rejects if an error occurs.
* @property {Function} remove - remove items from the queue that match a test
* function. The test function will be passed an object with a `data` property,