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