summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Smith <brismuth@gmail.com>2016-08-25 17:12:06 -0600
committerGitHub <noreply@github.com>2016-08-25 17:12:06 -0600
commitc7f69e91e2403f958007e3d00f2e7a6077121f45 (patch)
treeec4a6e9e6fc7e12bde3bd6117d1d1ec37eb49a4a
parentff65da5bb3b14fc7ba4632859fa9a0eee73ae80c (diff)
downloadasync-c7f69e91e2403f958007e3d00f2e7a6077121f45.tar.gz
Adding closing parenthesis to parallel example.
-rw-r--r--intro.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/intro.md b/intro.md
index 4000fdd..25d9796 100644
--- a/intro.md
+++ b/intro.md
@@ -45,7 +45,7 @@ async.parallel([
function(callback){ ... }
], function(err, results) {
// optional callback
-};
+});
async.series([
function(callback){ ... },