Skip to content

Commit

Permalink
Fix typo: unshift instead unshirt (#1740)
Browse files Browse the repository at this point in the history
Co-authored-by: Yehuda Y <yehuda@zyx.bz>
  • Loading branch information
yeya and Yehuda Y committed Dec 30, 2020
1 parent d589a51 commit b736192
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/async.js
Expand Up @@ -3081,7 +3081,7 @@
* 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,
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/docs.html
Expand Up @@ -15605,7 +15605,7 @@ <h5 class="subsection-title">Properties:</h5>

<tr>

<td class="name"><code>unshirtAsync</code></td>
<td class="name"><code>unshiftAsync</code></td>


<td class="type">
Expand Down
2 changes: 1 addition & 1 deletion docs/v3/module-ControlFlow.html
Expand Up @@ -6476,7 +6476,7 @@ <h5 class="subsection-title">Properties:</h5>

<tr>

<td class="name"><code>unshirtAsync</code></td>
<td class="name"><code>unshiftAsync</code></td>


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

0 comments on commit b736192

Please sign in to comment.