summaryrefslogtreecommitdiff
path: root/lib/doWhilst.js
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2016-06-30 16:02:09 -0700
committerGitHub <noreply@github.com>2016-06-30 16:02:09 -0700
commit13fcbf491d6428415c3e0bb525993fb1f366bee6 (patch)
tree47e5f372d69602b2b18960ec77b711e9ca31bb88 /lib/doWhilst.js
parentb7081631c373bf459f1108824f870c62328ed8d6 (diff)
parent209fb1eb12342cc6efe80a600d8a2566f806e28a (diff)
downloadasync-13fcbf491d6428415c3e0bb525993fb1f366bee6.tar.gz
Merge pull request #1202 from hargasinski/docs-pr
static doc site generation
Diffstat (limited to 'lib/doWhilst.js')
-rw-r--r--lib/doWhilst.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/doWhilst.js b/lib/doWhilst.js
index 96c4664..a425999 100644
--- a/lib/doWhilst.js
+++ b/lib/doWhilst.js
@@ -1,15 +1,16 @@
import whilst from './whilst';
/**
- * The post-check version of {@link async.whilst}. To reflect the difference in
+ * The post-check version of [`whilst`]{@link module:ControlFlow.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.
*
* @name doWhilst
* @static
- * @memberOf async
- * @see async.whilst
+ * @memberOf module:ControlFlow
+ * @method
+ * @see [async.whilst]{@link module:ControlFlow.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