summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEsco Obong <menzoic@gmail.com>2013-08-23 15:11:03 -0400
committerEsco Obong <menzoic@gmail.com>2013-08-23 15:11:03 -0400
commit5808951d67ed4326a1cf7dac12c7e692dcc43d4e (patch)
tree26d10991769906dbb8f167996409b0f94bd0d888 /README.md
parentd8601a17ab0bc6a1572227998b6e9182637f37b6 (diff)
downloadasync-5808951d67ed4326a1cf7dac12c7e692dcc43d4e.tar.gz
Update README.md
Added comment to waterfall example
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 31cfbab..a20f068 100644
--- a/README.md
+++ b/README.md
@@ -824,6 +824,7 @@ async.waterfall([
callback(null, 'one', 'two');
},
function(arg1, arg2, callback){
+ // arg1 now equals 'one' and arg2 now equals 'two'
callback(null, 'three');
},
function(arg1, callback){