Skip to content

Commit 3ad6ea7

Browse files
yurshasilverwind
authored andcommitted
doc: remove redundant parameter in end listener.
PR-URL: #1387 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1 parent 2bc3532 commit 3ad6ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/stream.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ data.
284284
```javascript
285285
var readable = getReadableStreamSomehow();
286286
readable.resume();
287-
readable.on('end', function(chunk) {
287+
readable.on('end', function() {
288288
console.log('got to the end, but did not read anything');
289289
});
290290
```

0 commit comments

Comments
 (0)