Skip to content

Commit

Permalink
fix(docs): fix code example in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
juanarbol committed Feb 3, 2020
1 parent 1feecdc commit 797bc85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/whilst.js
Expand Up @@ -24,7 +24,7 @@ import awaitify from './internal/awaitify';
*
* var count = 0;
* async.whilst(
* function test(cb) { cb(null, count < 5;) },
* function test(cb) { cb(null, count < 5); },
* function iter(callback) {
* count++;
* setTimeout(function() {
Expand Down

0 comments on commit 797bc85

Please sign in to comment.