diff --git a/doc/api/stream.md b/doc/api/stream.md index 6518b45e8b4f82..c35c799129c8e5 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1858,10 +1858,6 @@ const myReadable = new Readable({ #### readable.\_read(size) * `size` {number} Number of bytes to read asynchronously @@ -1881,9 +1877,7 @@ when `_read()` is called again after it has stopped should it resume pushing additional data onto the queue. Once the `readable._read()` method has been called, it will not be called again -until the [`readable.push()`][stream-push] method is called. `readable._read()` -is guaranteed to be called only once within a synchronous execution, i.e. a -microtick. +until the [`readable.push()`][stream-push] method is called. The `size` argument is advisory. For implementations where a "read" is a single operation that returns data can use the `size` argument to determine how