diff options
author | Graeme Yeates <yeatesgraeme@gmail.com> | 2016-07-12 16:51:15 -0400 |
---|---|---|
committer | Graeme Yeates <yeatesgraeme@gmail.com> | 2016-07-12 16:51:15 -0400 |
commit | 548ae8db6383059f493d8bcb88cbc3d1c4b2f315 (patch) | |
tree | d9fcf5b44970d797d53e6c2ad755b2719d8e9b36 /lib/eachOf.js | |
parent | a46e3b788d4d4b5bb0efb7df39fc662053b6c87f (diff) | |
download | async-548ae8db6383059f493d8bcb88cbc3d1c4b2f315.tar.gz |
Document methods which take iterables
Diffstat (limited to 'lib/eachOf.js')
-rw-r--r-- | lib/eachOf.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eachOf.js b/lib/eachOf.js index b51fefb..4d453c5 100644 --- a/lib/eachOf.js +++ b/lib/eachOf.js @@ -12,7 +12,7 @@ import doLimit from './internal/doLimit'; * @alias forEachOf * @category Collection * @see [async.each]{@link module:Collections.each} - * @param {Array|Object} coll - A collection to iterate over. + * @param {Array|Iterable|Object} coll - A collection to iterate over. * @param {Function} iteratee - A function to apply to each * item in `coll`. The `key` is the item's key, or index in the case of an * array. The iteratee is passed a `callback(err)` which must be called once it |