summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/queue.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/queue.js b/lib/queue.js
index a5ff1c8..5666843 100644
--- a/lib/queue.js
+++ b/lib/queue.js
@@ -6,8 +6,8 @@ import queue from './internal/queue';
* @memberOf module:ControlFlow
* @property {Function} length - a function returning the number of items
* waiting to be processed. Invoke with `queue.length()`.
- * @property {Function} started - a function returning whether or not any
- * items have been pushed and processed by the queue. Invoke with `queue.started()`.
+ * @property {boolean} started - a boolean indicating whether or not any
+ * items have been pushed and processed by the queue.
* @property {Function} running - a function returning the number of items
* currently being processed. Invoke with `queue.running()`.
* @property {Function} workersList - a function returning the array of items