doc: remove "note that" from stream.md

PR-URL: https://github.com/nodejs/node/pull/28329
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
Rich Trott 2019-06-20 13:38:19 -06:00
parent ca851a47bf
commit 2cd5fca399

View File

@ -1052,7 +1052,7 @@ readable.on('readable', () => {
});
```
Note that the `while` loop is necessary when processing data with
The `while` loop is necessary when processing data with
`readable.read()`. Only after `readable.read()` returns `null`,
[`'readable'`]() will be emitted.