Skip to content

Commit

Permalink
fix typo (#1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
omginbd committed Mar 3, 2020
1 parent 5e1fd9e commit 62cb8ea
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/async.js
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/docs.html
Expand Up @@ -15955,7 +15955,7 @@ <h5 class="subsection-title">Properties:</h5>

<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)
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/module-ControlFlow.html
Expand Up @@ -6826,7 +6826,7 @@ <h5 class="subsection-title">Properties:</h5>

<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)
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/queue.js.html
Expand Up @@ -145,7 +145,7 @@ <h1 class="page-title">queue.js</h1>
* 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)
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/scripts/async.js
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/queue.js
Expand Up @@ -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)
Expand Down

0 comments on commit 62cb8ea

Please sign in to comment.