summaryrefslogtreecommitdiff
path: root/intro.md
diff options
context:
space:
mode:
Diffstat (limited to 'intro.md')
-rw-r--r--intro.md2
1 files changed, 1 insertions, 1 deletions
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))) {