Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Typo fix in waterfall example
  • Loading branch information
dmlukichev committed Aug 26, 2015
1 parent b2fded3 commit d57b110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d57b110

Please sign in to comment.