summaryrefslogtreecommitdiff
path: root/lib/during.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/during.js')
-rw-r--r--lib/during.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/during.js b/lib/during.js
index 7c3d10c..de3b1a1 100644
--- a/lib/during.js
+++ b/lib/during.js
@@ -4,7 +4,7 @@ import noop from 'lodash/noop';
import rest from 'lodash/rest';
/**
- * Like [`whilst`](#whilst), except the `test` is an asynchronous function that
+ * Like {@link async.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.
@@ -12,7 +12,7 @@ import rest from 'lodash/rest';
* @name during
* @static
* @memberOf async
- * @see `async.whilst`
+ * @see async.whilst
* @category Control Flow
* @param {Function} test - asynchronous truth test to perform before each
* execution of `fn`. Invoked with (callback).