summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Yeates <yeatesgraeme@gmail.com>2016-07-08 12:38:48 -0400
committerGitHub <noreply@github.com>2016-07-08 12:38:48 -0400
commitf4acefdbbe7ea4e7271a4c97da4f3e28b3404987 (patch)
tree0e50ae5c636a3dfb39de9f0140c022589b7471ea
parent8685199248c4a7725722aa52d91c10b492177331 (diff)
parent7dc9928828661bed5cc2644da4d1a31e8fcc67fd (diff)
downloadasync-f4acefdbbe7ea4e7271a4c97da4f3e28b3404987.tar.gz
Merge pull request #1222 from scottarver/master
Update queue.js documentation
-rw-r--r--lib/queue.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/queue.js b/lib/queue.js
index 109ba50..a5ff1c8 100644
--- a/lib/queue.js
+++ b/lib/queue.js
@@ -42,7 +42,7 @@ import queue from './internal/queue';
* @property {Function} pause - a function that pauses the processing of tasks
* until `resume()` is called. Invoke with `queue.pause()`.
* @property {Function} resume - a function that resumes the processing of
- * queued tasks when the queue is paused. Invoke with `queue.length()`.
+ * queued tasks when the queue is paused. Invoke with `queue.resume()`.
* @property {Function} kill - a function that removes the `drain` callback and
* empties remaining tasks from the queue forcing it to go idle. Invoke with `queue.kill()`.
*/