diff --git a/doc/api/stream.md b/doc/api/stream.md index 9c1c97068645a8..060cb628443b8d 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -715,8 +715,8 @@ instance, when the `readable.resume()` method is called without a listener attached to the `'data'` event, or when a `'data'` event handler is removed from the stream. -Adding a [`'readable'`][] event handler automatically make the stream to -stop flowing, and the data to be consumed via +Adding a [`'readable'`][] event handler automatically makes the stream +stop flowing, and the data has to be consumed via [`readable.read()`][stream-read]. If the [`'readable'`][] event handler is removed, then the stream will start flowing again if there is a [`'data'`][] event handler.