summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Lukichev <dmlukichev@gmail.com>2015-08-27 01:24:50 +0300
committerDmitriy Lukichev <dmlukichev@gmail.com>2015-08-27 01:24:50 +0300
commitd57b110b3f82845de3c1466dd6f690595521344e (patch)
tree7b38786f7c85c97304b68580a9426caeee261143
parentb2fded336afaef589eddb602b29a228faffcb21e (diff)
downloadasync-d57b110b3f82845de3c1466dd6f690595521344e.tar.gz
Update README.md
Typo fix in waterfall example
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fa3f6f7..e80466e 100644
--- a/README.md
+++ b/README.md
@@ -103,7 +103,7 @@ async.waterfall([
}
// since we did not return, this callback still will be called and
// `processData` will be called twice
- callback(result);
+ callback(null, result);
});
},
processData