summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan José <soyjuanarbol@gmail.com>2020-03-03 12:55:44 -0500
committerGitHub <noreply@github.com>2020-03-03 09:55:44 -0800
commit5e1fd9e925cc3ed5ffeb9e843727be9063ab9d9f (patch)
tree9396b8c8203325a519b5a93888f2e634205f7008
parent4e23a9d9a74d422a7f5c3b01ba11f4e431e9a3bf (diff)
downloadasync-5e1fd9e925cc3ed5ffeb9e843727be9063ab9d9f.tar.gz
Fix code until code example (#1708)
-rw-r--r--lib/until.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/until.js b/lib/until.js
index b77b495..0f463dd 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) => {