summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKuba Holuj <kuba@moz.com>2016-08-04 16:56:19 -0700
committerGitHub <noreply@github.com>2016-08-04 16:56:19 -0700
commit7bccc95acfee2fe7116609855737231f28f00a1e (patch)
tree121ea618617cfa2c8c1c9b1f1d149247eb3b4e80 /lib
parent60dc3b658e4c6bdc8a2469e278a474e1586fa74a (diff)
downloadasync-7bccc95acfee2fe7116609855737231f28f00a1e.tar.gz
Documentation typo
"Invoked with" doubled.
Diffstat (limited to 'lib')
-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