summaryrefslogtreecommitdiff
path: root/lib/times.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/times.js')
-rw-r--r--lib/times.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/times.js b/lib/times.js
index ef92779..8b4bb2b 100644
--- a/lib/times.js
+++ b/lib/times.js
@@ -5,17 +5,17 @@ import doLimit from './internal/doLimit';
/**
* Calls the `iteratee` function `n` times, and accumulates results in the same
- * manner you would use with [`map`](#map).
+ * manner you would use with {@link async.map}.
*
* @name times
* @static
* @memberOf async
- * @see `async.map`
+ * @see async.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 [`map`](#map).
+ * @param {Function} callback - see {@link async.map}.
* @example
*
* // Pretend this is some complicated async factory