summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2015-08-26 15:29:18 -0700
committerAlexander Early <alexander.early@gmail.com>2015-08-26 15:29:18 -0700
commit04e8be192524dccb93d785cf64a8c971f75521c0 (patch)
tree7b38786f7c85c97304b68580a9426caeee261143
parentb2fded336afaef589eddb602b29a228faffcb21e (diff)
parentd57b110b3f82845de3c1466dd6f690595521344e (diff)
downloadasync-04e8be192524dccb93d785cf64a8c971f75521c0.tar.gz
Merge pull request #894 from dmlukichev/patch-1
Update README.md :scroll:
-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