From 62cb8ea8ce3e3b4b66cf9abc66153d2d7255985b Mon Sep 17 00:00:00 2001 From: Michael Collier <2192241+omginbd@users.noreply.github.com> Date: Tue, 3 Mar 2020 10:56:04 -0700 Subject: fix typo (#1707) --- dist/async.js | 2 +- docs/v3/docs.html | 2 +- docs/v3/module-ControlFlow.html | 2 +- docs/v3/queue.js.html | 2 +- docs/v3/scripts/async.js | 2 +- lib/queue.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/async.js b/dist/async.js index 57e9478..5f59f85 100644 --- a/dist/async.js +++ b/dist/async.js @@ -3120,7 +3120,7 @@ * should be pushed to the queue after calling this function. Invoke with `queue.kill()`. * * @example - * const q = aync.queue(worker, 2) + * const q = async.queue(worker, 2) * q.push(item1) * q.push(item2) * q.push(item3) diff --git a/docs/v3/docs.html b/docs/v3/docs.html index 6f1230b..5655ab2 100644 --- a/docs/v3/docs.html +++ b/docs/v3/docs.html @@ -15955,7 +15955,7 @@ should be pushed to the queue after calling this function. Invoke with que
Example
-
const q = aync.queue(worker, 2)
+    
const q = async.queue(worker, 2)
 q.push(item1)
 q.push(item2)
 q.push(item3)
diff --git a/docs/v3/module-ControlFlow.html b/docs/v3/module-ControlFlow.html
index 74b801f..fb16cd3 100644
--- a/docs/v3/module-ControlFlow.html
+++ b/docs/v3/module-ControlFlow.html
@@ -6826,7 +6826,7 @@ should be pushed to the queue after calling this function. Invoke with que
 
     
Example
-
const q = aync.queue(worker, 2)
+    
const q = async.queue(worker, 2)
 q.push(item1)
 q.push(item2)
 q.push(item3)
diff --git a/docs/v3/queue.js.html b/docs/v3/queue.js.html
index 2f7c505..b213ef5 100644
--- a/docs/v3/queue.js.html
+++ b/docs/v3/queue.js.html
@@ -145,7 +145,7 @@ import wrapAsync from './internal/wrapAsync';
  * should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
  *
  * @example
- * const q = aync.queue(worker, 2)
+ * const q = async.queue(worker, 2)
  * q.push(item1)
  * q.push(item2)
  * q.push(item3)
diff --git a/docs/v3/scripts/async.js b/docs/v3/scripts/async.js
index 57e9478..5f59f85 100644
--- a/docs/v3/scripts/async.js
+++ b/docs/v3/scripts/async.js
@@ -3120,7 +3120,7 @@
      * should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
      *
      * @example
-     * const q = aync.queue(worker, 2)
+     * const q = async.queue(worker, 2)
      * q.push(item1)
      * q.push(item2)
      * q.push(item3)
diff --git a/lib/queue.js b/lib/queue.js
index dc55547..61468a2 100644
--- a/lib/queue.js
+++ b/lib/queue.js
@@ -68,7 +68,7 @@ import wrapAsync from './internal/wrapAsync';
  * should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
  *
  * @example
- * const q = aync.queue(worker, 2)
+ * const q = async.queue(worker, 2)
  * q.push(item1)
  * q.push(item2)
  * q.push(item3)
-- 
cgit v1.2.1