From d3569b623ccd593c9ef62fcaf0aba2711dc7fbfa Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 5 Feb 2018 21:55:16 -0800 Subject: doc: remove **Note:** tags Remove the various **Note:** prefixes throughout the docs. PR-URL: https://github.com/nodejs/node/pull/18592 Reviewed-By: Rich Trott Reviewed-By: Daniel Bevenius Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater Reviewed-By: Michael Dawson --- doc/api/stream.md | 143 +++++++++++++++++++++++++++--------------------------- 1 file changed, 71 insertions(+), 72 deletions(-) (limited to 'doc/api/stream.md') diff --git a/doc/api/stream.md b/doc/api/stream.md index 345e0d824d..023ba4d77b 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -188,8 +188,8 @@ Examples of [Writable][] streams include: * [child process stdin][] * [`process.stdout`][], [`process.stderr`][] -*Note*: Some of these examples are actually [Duplex][] streams that implement -the [Writable][] interface. +Some of these examples are actually [Duplex][] streams that implement the +[Writable][] interface. All [Writable][] streams implement the interface defined by the `stream.Writable` class. @@ -270,7 +270,7 @@ added: v0.9.4 The `'error'` event is emitted if an error occurred while writing or piping data. The listener callback is passed a single `Error` argument when called. -*Note*: The stream is not closed when the `'error'` event is emitted. +The stream is not closed when the `'error'` event is emitted. ##### Event: 'finish'