Skip to content

Commit 032753b

Browse files
committedAug 11, 2019
doc: clarify when destroy emits events
1 parent 1592d0a commit 032753b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ added: v8.0.0
370370
* Returns: {this}
371371

372372
Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'`
373-
event unless `emitClose` is set in `false`. After this call, the writable
373+
event (unless `emitClose` is set to `false`). After this call, the writable
374374
stream has ended and subsequent calls to `write()` or `end()` will result in
375375
an `ERR_STREAM_DESTROYED` error.
376376
This is a destructive and immediate way to destroy a stream. Previous calls to
@@ -919,7 +919,7 @@ added: v8.0.0
919919
* Returns: {this}
920920

921921
Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'`
922-
event unless `emitClose` is set in `false`. After this call, the readable
922+
event (unless `emitClose` is set to `false`). After this call, the readable
923923
stream will release any internal resources and subsequent calls to `push()`
924924
will be ignored.
925925
Implementors should not override this method, but instead implement

0 commit comments

Comments
 (0)