summaryrefslogtreecommitdiff
path: root/lib/times.js
diff options
context:
space:
mode:
authorGraeme Yeates <yeatesgraeme@gmail.com>2016-04-29 15:26:25 -0400
committerGraeme Yeates <yeatesgraeme@gmail.com>2016-04-29 15:26:25 -0400
commitec9f81adfda9ec9681b3f33f24d3c2e917b4b908 (patch)
treebaa261902276ef2a032d7bd0c2f5f9eba23391af /lib/times.js
parenta9636c00e269c1bf2f3def12cba36563e7658201 (diff)
downloadasync-ec9f81adfda9ec9681b3f33f24d3c2e917b4b908.tar.gz
Fix doc linking (see #1135)doc-linking
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