summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Collier <2192241+omginbd@users.noreply.github.com>2020-03-03 10:56:04 -0700
committerGitHub <noreply@github.com>2020-03-03 09:56:04 -0800
commit62cb8ea8ce3e3b4b66cf9abc66153d2d7255985b (patch)
tree95be72d46651f8ae3bd42a28e2e0e25347031d3f
parent5e1fd9e925cc3ed5ffeb9e843727be9063ab9d9f (diff)
downloadasync-62cb8ea8ce3e3b4b66cf9abc66153d2d7255985b.tar.gz
fix typo (#1707)
-rw-r--r--dist/async.js2
-rw-r--r--docs/v3/docs.html2
-rw-r--r--docs/v3/module-ControlFlow.html2
-rw-r--r--docs/v3/queue.js.html2
-rw-r--r--docs/v3/scripts/async.js2
-rw-r--r--lib/queue.js2
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 <code>que
<h5>Example</h5>
- <pre class="prettyprint"><code>const q = aync.queue(worker, 2)
+ <pre class="prettyprint"><code>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 <code>que
<h5>Example</h5>
- <pre class="prettyprint"><code>const q = aync.queue(worker, 2)
+ <pre class="prettyprint"><code>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 &apos;./internal/wrapAsync&apos;;
* 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)