diff --git a/lib/queue.js b/lib/queue.js index 2d0abb7a9..2ba1747b3 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()`. */ /**