summaryrefslogtreecommitdiff
path: root/lib/eachLimit.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/eachLimit.js')
-rw-r--r--lib/eachLimit.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/eachLimit.js b/lib/eachLimit.js
index d5f200c..a46eb9d 100644
--- a/lib/eachLimit.js
+++ b/lib/eachLimit.js
@@ -2,12 +2,13 @@ import eachOfLimit from './internal/eachOfLimit';
import withoutIndex from './internal/withoutIndex';
/**
- * The same as `each` but runs a maximum of `limit` async operations at a time.
+ * The same as [`each`]{@link module:Collections.each} but runs a maximum of `limit` async operations at a time.
*
* @name eachLimit
* @static
- * @memberOf async
- * @see async.each
+ * @memberOf module:Collections
+ * @method
+ * @see [async.each]{@link module:Collections.each}
* @alias forEachLimit
* @category Collection
* @param {Array|Object} coll - A colleciton to iterate over.