diff --git a/doc/api/stream.md b/doc/api/stream.md index e5e8ff88a17c7b..b5b4e2db8a25cc 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -79,7 +79,7 @@ queue until it is consumed. Once the total size of the internal read buffer reaches the threshold specified by `highWaterMark`, the stream will temporarily stop reading data from the underlying resource until the data currently buffered can be consumed (that is, -the stream will stop calling the internal `readable._read()` method that is +the stream will stop calling the internal [`readable._read()`][] method that is used to fill the read buffer). Data is buffered in `Writable` streams when the @@ -2099,7 +2099,7 @@ console.log(w.data); // currency: € The `stream.Readable` class is extended to implement a [`Readable`][] stream. Custom `Readable` streams *must* call the `new stream.Readable([options])` -constructor and implement the `readable._read()` method. +constructor and implement the [`readable._read()`][] method. #### `new stream.Readable([options])`