From 4126fa0ca3e1050ae645894d609a182f67f78de4 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Sun, 24 Sep 2017 14:40:41 +0300 Subject: [PATCH] doc: fix a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6375763..dff17c5 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ stream.destroy() // will destroy the input file stream fs.createReadStream(file) .pipe(split2(JSON.parse)) .on('data', function (obj) { - //each chunk now is a a js object + //each chunk now is a js object }) ```