summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 80567f4..871f123 100644
--- a/README.md
+++ b/README.md
@@ -919,7 +919,7 @@ async.whilst(
### doWhilst(fn, test, callback)
The post-check version of [`whilst`](#whilst). To reflect the difference in
-the order of operations, the arguments `test` and `fn` are switched.
+the order of operations, the arguments `test` and `fn` are switched. The `test` function is also passed the non-error callback results of `fn`.
`doWhilst` is to `whilst` as `do while` is to `while` in plain JavaScript.
@@ -941,7 +941,7 @@ The inverse of [`whilst`](#whilst).
### doUntil(fn, test, callback)
-Like [`doWhilst`](#doWhilst), except the `test` is inverted. Note the argument ordering differs from `until`.
+Like [`doWhilst`](#doWhilst), except the `test` is inverted. Note the argument ordering differs from `until`. The `test` function is also passed the non-error callback results of `fn`.
---------------------------------------