Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: remove extra space in code example
  • Loading branch information
saadq committed Jul 15, 2016
commit ce57bbe1f475750b3fd8b3151d50058da42b2c2f
2 changes: 1 addition & 1 deletion doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,7 @@ const myWritable = new Writable({
if (chunk.toString().indexOf('a') >= 0) {
callback(new Error('chunk is invalid'));
} else {
callback();
callback();
}
}
});
Expand Down