summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Argasinski <hubert@hubdoc.com>2016-08-04 20:02:31 -0400
committerGitHub <noreply@github.com>2016-08-04 20:02:31 -0400
commit6f19a8d5219c516b765a30e243ead0e590ca1a5c (patch)
tree121ea618617cfa2c8c1c9b1f1d149247eb3b4e80
parent60dc3b658e4c6bdc8a2469e278a474e1586fa74a (diff)
parent7bccc95acfee2fe7116609855737231f28f00a1e (diff)
downloadasync-6f19a8d5219c516b765a30e243ead0e590ca1a5c.tar.gz
Merge pull request #1263 from ieatfood/patch-1
Documentation typo
-rw-r--r--lib/doWhilst.js4
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