From eba2e3c0dfc11e58271faac061b10ec4c7993b4f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 20 Jun 2019 13:38:19 -0600 Subject: [PATCH] doc: remove "note that" from stream.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/28329 Reviewed-By: Gus Caplan Reviewed-By: Trivikram Kamat Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater --- doc/api/stream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 46f4226039c2df..abefb4aa6bba77 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -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.