summaryrefslogtreecommitdiff
path: root/lib/until.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/until.js
parenta9636c00e269c1bf2f3def12cba36563e7658201 (diff)
downloadasync-doc-linking.tar.gz
Fix doc linking (see #1135)doc-linking
Diffstat (limited to 'lib/until.js')
-rw-r--r--lib/until.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/until.js b/lib/until.js
index 0c5a1aa..f5e6efa 100644
--- a/lib/until.js
+++ b/lib/until.js
@@ -7,12 +7,12 @@ import whilst from './whilst';
* stopped, or an error occurs. `callback` will be passed an error and any
* arguments passed to the final `fn`'s callback.
*
- * The inverse of [`whilst`](#whilst).
+ * The inverse of {@link async.whilst}.
*
* @name until
* @static
* @memberOf async
- * @see `async.whilst`
+ * @see async.whilst
* @category Control Flow
* @param {Function} test - synchronous truth test to perform before each
* execution of `fn`. Invoked with ().