summaryrefslogtreecommitdiff
path: root/lib/doWhilst.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/doWhilst.js
parenta9636c00e269c1bf2f3def12cba36563e7658201 (diff)
downloadasync-ec9f81adfda9ec9681b3f33f24d3c2e917b4b908.tar.gz
Fix doc linking (see #1135)doc-linking
Diffstat (limited to 'lib/doWhilst.js')
-rw-r--r--lib/doWhilst.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/doWhilst.js b/lib/doWhilst.js
index 54c8303..f49cf08 100644
--- a/lib/doWhilst.js
+++ b/lib/doWhilst.js
@@ -3,7 +3,7 @@
import whilst from './whilst';
/**
- * The post-check version of [`whilst`](#whilst). To reflect the difference in
+ * The post-check version of {@link async.whilst}. To reflect the difference in
* the order of operations, the arguments `test` and `fn` are switched.
*
* `doWhilst` is to `whilst` as `do while` is to `while` in plain JavaScript.
@@ -11,7 +11,7 @@ import whilst from './whilst';
* @name doWhilst
* @static
* @memberOf async
- * @see `async.whilst`
+ * @see async.whilst
* @category Control Flow
* @param {Function} fn - A function which is called each time `test` passes.
* The function is passed a `callback(err)`, which must be called once it has