diff --git a/doc/api/stream.md b/doc/api/stream.md index 92070c66a87603..62e30d0e8bd13b 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -372,7 +372,7 @@ added: v8.0.0 * Returns: {this} Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'` -event unless `emitClose` is set in `false`. After this call, the writable +event (unless `emitClose` is set to `false`). After this call, the writable stream has ended and subsequent calls to `write()` or `end()` will result in an `ERR_STREAM_DESTROYED` error. This is a destructive and immediate way to destroy a stream. Previous calls to @@ -932,7 +932,7 @@ added: v8.0.0 * Returns: {this} Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'` -event unless `emitClose` is set in `false`. After this call, the readable +event (unless `emitClose` is set to `false`). After this call, the readable stream will release any internal resources and subsequent calls to `push()` will be ignored. Implementors should not override this method, but instead implement