summaryrefslogtreecommitdiff
path: root/lib/times.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/times.js')
-rw-r--r--lib/times.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/times.js b/lib/times.js
index 1d5b6c3..bdd2e6b 100644
--- a/lib/times.js
+++ b/lib/times.js
@@ -3,17 +3,18 @@ import doLimit from './internal/doLimit';
/**
* Calls the `iteratee` function `n` times, and accumulates results in the same
- * manner you would use with {@link async.map}.
+ * manner you would use with [map]{@link module:Collections.map}.
*
* @name times
* @static
- * @memberOf async
- * @see async.map
+ * @memberOf module:ControlFlow
+ * @method
+ * @see [async.map]{@link module:Collections.map}
* @category Control Flow
* @param {number} n - The number of times to run the function.
* @param {Function} iteratee - The function to call `n` times. Invoked with the
* iteration index and a callback (n, next).
- * @param {Function} callback - see {@link async.map}.
+ * @param {Function} callback - see {@link module:Collections.map}.
* @example
*
* // Pretend this is some complicated async factory