From 00fe45e092fa1bb1f4c27d078c7a467f53e17b03 Mon Sep 17 00:00:00 2001 From: Abraham Williams <4braham@gmail.com> Date: Mon, 9 Jul 2018 13:24:51 -0500 Subject: Add limit value to `mapLimit` example (#1558) --- intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro.md b/intro.md index dc4b29c..1bc29e3 100644 --- a/intro.md +++ b/intro.md @@ -124,7 +124,7 @@ It is always good practice to `return callback(err, result)` whenever a callbac Async accepts `async` functions wherever we accept a Node-style callback function. However, we do not pass them a callback, and instead use the return value and handle any promise rejections or errors thrown. ```js -async.mapLimit(files, async file => { // <- no callback! +async.mapLimit(files, 10, async file => { // <- no callback! const text = await util.promisify(fs.readFile)(dir + file, 'utf8') const body = JSON.parse(text) // <- a parse error herre will be caught automatically if (!(await checkValidity(body))) { -- cgit v1.2.1