Skip to content

Commit

Permalink
doc: Fix error in readme example (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbrianevans committed Aug 26, 2022
1 parent 148fe91 commit c3ecc9c
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 @@ -60,7 +60,7 @@ fs.createReadStream(file)
.on('data', function (obj) {
//each chunk now is a js object
})
.on("error", function(error) => {
.on("error", function(error) {
//handling parsing errors
})
```
Expand Down

0 comments on commit c3ecc9c

Please sign in to comment.