summaryrefslogtreecommitdiff
path: root/lib/during.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/during.js')
-rw-r--r--lib/during.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/during.js b/lib/during.js
index 1013bc8..55af1b9 100644
--- a/lib/during.js
+++ b/lib/during.js
@@ -2,15 +2,16 @@ import noop from 'lodash/noop';
import rest from 'lodash/rest';
/**
- * Like {@link async.whilst}, except the `test` is an asynchronous function that
+ * Like [`whilst`]{@link module:ControlFlow.whilst}, except the `test` is an asynchronous function that
* is passed a callback in the form of `function (err, truth)`. If error is
* passed to `test` or `fn`, the main callback is immediately called with the
* value of the error.
*
* @name during
* @static
- * @memberOf async
- * @see async.whilst
+ * @memberOf module:ControlFlow
+ * @method
+ * @see [async.whilst]{@link module:ControlFlow.whilst}
* @category Control Flow
* @param {Function} test - asynchronous truth test to perform before each
* execution of `fn`. Invoked with (callback).