summaryrefslogtreecommitdiff
path: root/lib/filter.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/filter.js')
-rw-r--r--lib/filter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filter.js b/lib/filter.js
index b858fea..e6d3010 100644
--- a/lib/filter.js
+++ b/lib/filter.js
@@ -12,7 +12,7 @@ import doLimit from './internal/doLimit';
* @method
* @alias select
* @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).