Skip to content

Commit eac373d

Browse files
author
Caolan McMahon
committed
add commas to waterfall example in REAMDE - thanks dbro
1 parent a3f2a20 commit eac373d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,10 +635,10 @@ __Example__
635635
async.waterfall([
636636
function(callback){
637637
callback(null, 'one', 'two');
638-
}
638+
},
639639
function(arg1, arg2, callback){
640640
callback(null, 'three');
641-
}
641+
},
642642
function(arg1, callback){
643643
// arg1 now equals 'three'
644644
callback(null, 'done');

0 commit comments

Comments
 (0)