summaryrefslogtreecommitdiff
path: root/lib/queue.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/queue.js')
-rw-r--r--lib/queue.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/queue.js b/lib/queue.js
index 2d0abb7..2ba1747 100644
--- a/lib/queue.js
+++ b/lib/queue.js
@@ -51,7 +51,8 @@ import wrapAsync from './internal/wrapAsync';
* @property {Function} resume - a function that resumes the processing of
* 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()`.
+ * empties remaining tasks from the queue forcing it to go idle. No more tasks
+ * should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
*/
/**