summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscottarver <scottarver@gmail.com>2016-07-08 11:22:59 -0500
committerGitHub <noreply@github.com>2016-07-08 11:22:59 -0500
commit7dc9928828661bed5cc2644da4d1a31e8fcc67fd (patch)
tree0e50ae5c636a3dfb39de9f0140c022589b7471ea
parent8685199248c4a7725722aa52d91c10b492177331 (diff)
downloadasync-7dc9928828661bed5cc2644da4d1a31e8fcc67fd.tar.gz
Update queue.js
-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()`.
*/