diff --git a/README.md b/README.md index fa3f6f709..e80466e04 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