From e734c8c09366986e3c2cf8ea7edd1699c5e76ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Sun, 2 Feb 2020 20:36:54 -0500 Subject: [PATCH] fix(docs): fix code example in docs --- lib/whilst.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/whilst.js b/lib/whilst.js index 361b72d9a..eda2923de 100644 --- a/lib/whilst.js +++ b/lib/whilst.js @@ -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() {