From df87030f1405d40533c15669adcb46fed4c9a885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Thu, 27 Feb 2020 17:46:54 -0500 Subject: [PATCH] Fix code until code example --- lib/until.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/until.js b/lib/until.js index b77b495e1..0f463dd02 100644 --- a/lib/until.js +++ b/lib/until.js @@ -27,7 +27,7 @@ import wrapAsync from './internal/wrapAsync'; * @example * const results = [] * let finished = false - * async.until(function test(page, cb) { + * async.until(function test(cb) { * cb(null, finished) * }, function iter(next) { * fetchPage(url, (err, body) => {