summaryrefslogtreecommitdiff
path: root/lib/rejectSeries.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rejectSeries.js')
-rw-r--r--lib/rejectSeries.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rejectSeries.js b/lib/rejectSeries.js
index 0844864..0bb925e 100644
--- a/lib/rejectSeries.js
+++ b/lib/rejectSeries.js
@@ -10,7 +10,7 @@ import doLimit from './internal/doLimit';
* @method
* @see [async.reject]{@link module:Collections.reject}
* @category Collection
- * @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).