summaryrefslogtreecommitdiff
path: root/lib/eachOfSeries.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/eachOfSeries.js')
-rw-r--r--lib/eachOfSeries.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eachOfSeries.js b/lib/eachOfSeries.js
index 32003a8..21e816d 100644
--- a/lib/eachOfSeries.js
+++ b/lib/eachOfSeries.js
@@ -11,7 +11,7 @@ import doLimit from './internal/doLimit';
* @see [async.eachOf]{@link module:Collections.eachOf}
* @alias forEachOfSeries
* @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 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 has completed. If no