diff options
-rw-r--r-- | lib/doWhilst.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/doWhilst.js b/lib/doWhilst.js index a0ba5d1..584db09 100644 --- a/lib/doWhilst.js +++ b/lib/doWhilst.js @@ -19,8 +19,8 @@ import onlyOnce from './internal/onlyOnce'; * passes. The function is passed a `callback(err)`, which must be called once * it has completed with an optional `err` argument. Invoked with (callback). * @param {Function} test - synchronous truth test to perform after each - * execution of `iteratee`. Invoked with Invoked with the non-error callback - * results of `iteratee`. + * execution of `iteratee`. Invoked with the non-error callback results of + * `iteratee`. * @param {Function} [callback] - A callback which is called after the test * function has failed and repeated execution of `iteratee` has stopped. * `callback` will be passed an error and any arguments passed to the final |