summaryrefslogtreecommitdiff
path: root/lib/parallelLimit.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parallelLimit.js')
-rw-r--r--lib/parallelLimit.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/parallelLimit.js b/lib/parallelLimit.js
index 2eb8b2f..926fa85 100644
--- a/lib/parallelLimit.js
+++ b/lib/parallelLimit.js
@@ -2,13 +2,14 @@ import eachOfLimit from './internal/eachOfLimit';
import parallel from './internal/parallel';
/**
- * The same as `parallel` but runs a maximum of `limit` async operations at a
+ * The same as [`parallel`]{@link module:ControlFlow.parallel} but runs a maximum of `limit` async operations at a
* time.
*
- * @name parallel
+ * @name parallelLimit
* @static
- * @memberOf async
- * @see async.parallel
+ * @memberOf module:ControlFlow
+ * @method
+ * @see [async.parallel]{@link module:ControlFlow.parallel}
* @category Control Flow
* @param {Array|Collection} tasks - A collection containing functions to run.
* Each function is passed a `callback(err, result)` which it must call on