Skip to content

Commit 62cb8ea

Browse files
authored
fix typo (#1707)
1 parent 5e1fd9e commit 62cb8ea

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dist/async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3120,7 +3120,7 @@
31203120
* should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
31213121
*
31223122
* @example
3123-
* const q = aync.queue(worker, 2)
3123+
* const q = async.queue(worker, 2)
31243124
* q.push(item1)
31253125
* q.push(item2)
31263126
* q.push(item3)

docs/v3/docs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15955,7 +15955,7 @@ <h5 class="subsection-title">Properties:</h5>
1595515955

1595615956
<h5>Example</h5>
1595715957

15958-
<pre class="prettyprint"><code>const q = aync.queue(worker, 2)
15958+
<pre class="prettyprint"><code>const q = async.queue(worker, 2)
1595915959
q.push(item1)
1596015960
q.push(item2)
1596115961
q.push(item3)

docs/v3/module-ControlFlow.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6826,7 +6826,7 @@ <h5 class="subsection-title">Properties:</h5>
68266826

68276827
<h5>Example</h5>
68286828

6829-
<pre class="prettyprint"><code>const q = aync.queue(worker, 2)
6829+
<pre class="prettyprint"><code>const q = async.queue(worker, 2)
68306830
q.push(item1)
68316831
q.push(item2)
68326832
q.push(item3)

docs/v3/queue.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ <h1 class="page-title">queue.js</h1>
145145
* should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
146146
*
147147
* @example
148-
* const q = aync.queue(worker, 2)
148+
* const q = async.queue(worker, 2)
149149
* q.push(item1)
150150
* q.push(item2)
151151
* q.push(item3)

docs/v3/scripts/async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3120,7 +3120,7 @@
31203120
* should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
31213121
*
31223122
* @example
3123-
* const q = aync.queue(worker, 2)
3123+
* const q = async.queue(worker, 2)
31243124
* q.push(item1)
31253125
* q.push(item2)
31263126
* q.push(item3)

lib/queue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import wrapAsync from './internal/wrapAsync';
6868
* should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
6969
*
7070
* @example
71-
* const q = aync.queue(worker, 2)
71+
* const q = async.queue(worker, 2)
7272
* q.push(item1)
7373
* q.push(item2)
7474
* q.push(item3)

0 commit comments

Comments
 (0)