summaryrefslogtreecommitdiff
path: root/lib/until.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/until.js')
-rw-r--r--lib/until.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/until.js b/lib/until.js
index 910e049..7b0b0b5 100644
--- a/lib/until.js
+++ b/lib/until.js
@@ -5,12 +5,13 @@ 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 {@link async.whilst}.
+ * The inverse of [whilst]{@link module:ControlFlow.whilst}.
*
* @name until
* @static
- * @memberOf async
- * @see async.whilst
+ * @memberOf module:ControlFlow
+ * @method
+ * @see [async.whilst]{@link module:ControlFlow.whilst}
* @category Control Flow
* @param {Function} test - synchronous truth test to perform before each
* execution of `fn`. Invoked with ().