summaryrefslogtreecommitdiff
path: root/lib/detect.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/detect.js')
-rw-r--r--lib/detect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/detect.js b/lib/detect.js
index 3aff790..8119b05 100644
--- a/lib/detect.js
+++ b/lib/detect.js
@@ -20,7 +20,7 @@ import findGetResult from './internal/findGetResult';
* @method
* @alias find
* @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).