summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2016-08-25 16:29:52 -0700
committerGitHub <noreply@github.com>2016-08-25 16:29:52 -0700
commitf15420b4383645b9a5aa7da93f3d5479c6bdeb0d (patch)
treeec4a6e9e6fc7e12bde3bd6117d1d1ec37eb49a4a
parentff65da5bb3b14fc7ba4632859fa9a0eee73ae80c (diff)
parentc7f69e91e2403f958007e3d00f2e7a6077121f45 (diff)
downloadasync-f15420b4383645b9a5aa7da93f3d5479c6bdeb0d.tar.gz
Merge pull request #1271 from brismuth/master
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){ ... },