We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5830a commit 30245ecCopy full SHA for 30245ec
README.md
@@ -160,7 +160,7 @@ then `whilst()` will reject immediately.
160
`doWhilst()` is similar to `whilst()`, but `whilst()` might execute `fn()` zero times if `test()` returns false on the
161
first run, where `doWhilst()` is guaranteed to call `fn()` at least once. Note that the parameters are reversed
162
between `whilst()` and `doWhilst()` to reflect the fact that one is "while /test/ do /fn/", and the other is "do /fn/
163
-while /test/" (and to preserver API compatibility with [async](https://github.com/caolan/async#whilst)).
+while /test/" (and to preserve API compatibility with [async](https://github.com/caolan/async#whilst)).
164
165
Example:
166
0 commit comments