summaryrefslogtreecommitdiff
path: root/lib/reject.js
diff options
context:
space:
mode:
authorGraeme Yeates <yeatesgraeme@gmail.com>2016-07-12 16:51:15 -0400
committerGraeme Yeates <yeatesgraeme@gmail.com>2016-07-12 16:51:15 -0400
commit548ae8db6383059f493d8bcb88cbc3d1c4b2f315 (patch)
treed9fcf5b44970d797d53e6c2ad755b2719d8e9b36 /lib/reject.js
parenta46e3b788d4d4b5bb0efb7df39fc662053b6c87f (diff)
downloadasync-548ae8db6383059f493d8bcb88cbc3d1c4b2f315.tar.gz
Document methods which take iterables
Diffstat (limited to 'lib/reject.js')
-rw-r--r--lib/reject.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reject.js b/lib/reject.js
index f882a93..8607614 100644
--- a/lib/reject.js
+++ b/lib/reject.js
@@ -10,7 +10,7 @@ import doLimit from './internal/doLimit';
* @method
* @see [async.filter]{@link module:Collections.filter}
* @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).