summaryrefslogtreecommitdiff
path: root/lib/detectSeries.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/detectSeries.js')
-rw-r--r--lib/detectSeries.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/detectSeries.js b/lib/detectSeries.js
index fd29343..3086a62 100644
--- a/lib/detectSeries.js
+++ b/lib/detectSeries.js
@@ -14,7 +14,7 @@ import findGetResult from './internal/findGetResult';
* @see [async.detect]{@link module:Collections.detect}
* @alias findSeries
* @category Collections
- * @param {Array|Object} coll - A collection to iterate over.
+ * @param {Array|Iterable|Object} coll - A collection to iterate over.
* @param {Function} iteratee - A truth test to apply to each item in `coll`.
* The iteratee is passed a `callback(err, truthValue)` which must be called
* with a boolean argument once it has completed. Invoked with (item, callback).