summaryrefslogtreecommitdiff
path: root/lib/detect.js
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2018-08-05 13:35:58 -0700
committerGitHub <noreply@github.com>2018-08-05 13:35:58 -0700
commit61268c58857205c704b28787728ed9bfe780dbd6 (patch)
tree65f2ff1d524a6e487725207f36b0199da39abe3e /lib/detect.js
parent5c174fa63b5a7197ff6abe19a97b74ed7e77646d (diff)
downloadasync-61268c58857205c704b28787728ed9bfe780dbd6.tar.gz
[wip] initial async generator support (#1560)
feat: initial async generator support
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 1ea4eb4..3e28f0e 100644
--- a/lib/detect.js
+++ b/lib/detect.js
@@ -17,7 +17,7 @@ import doParallel from './internal/doParallel';
* @method
* @alias find
* @category Collections
- * @param {Array|Iterable|Object} coll - A collection to iterate over.
+ * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.
* @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
* The iteratee must complete with a boolean value as its result.
* Invoked with (item, callback).