summaryrefslogtreecommitdiff
path: root/docs/v3/until.js.html
diff options
context:
space:
mode:
authorRoman Lorenzo Balayan <roman.balayan@gmail.com>2021-08-06 06:58:10 +0800
committerGitHub <noreply@github.com>2021-08-05 15:58:10 -0700
commit159a119fbb1a585c61f33b4b3b5036f5d332ebbb (patch)
treebbf78b2e8899c412ceede4a705d45368f61b51bf /docs/v3/until.js.html
parent89255fe326050e80ce5394a9c00e11e9be8b1005 (diff)
downloadasync-159a119fbb1a585c61f33b4b3b5036f5d332ebbb.tar.gz
Enhance examples for Collections methods. (#1726)
* Enhance examples for Collections methods. * Update collection example code, avoiding usage of IIFE on async/await examples * Convert examples on async.auto, async.series, and async.parallel to samples using Promises and async/await Co-authored-by: Roman Balayan <roman.balayan@paymaya.com>
Diffstat (limited to 'docs/v3/until.js.html')
-rw-r--r--docs/v3/until.js.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/v3/until.js.html b/docs/v3/until.js.html
index 6b5a272..5cb8c52 100644
--- a/docs/v3/until.js.html
+++ b/docs/v3/until.js.html
@@ -104,7 +104,7 @@ import wrapAsync from &apos;./internal/wrapAsync&apos;;
* @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) =&gt; {