From 6c93d01fbadf53deb17fdd9d26de3095444fad43 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Fri, 18 Aug 2017 23:09:14 -0700 Subject: [PATCH] doc: remove `you` and fixup note in 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/14938 Reviewed-By: Timothy Gu Reviewed-By: Ruben Bridgewater Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig Reviewed-By: Yuta Hiroto Reviewed-By: Tobias Nießen Reviewed-By: Refael Ackermann --- doc/api/stream.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index aa95d2e4e4cd6a..ffe0df4a20b73b 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1445,9 +1445,9 @@ added: v8.0.0 --> * `callback` {Function} Call this function (optionally with an error - argument) when you are done writing any remaining data. + argument) when finished writing any remaining data. -Note: `_final()` **must not** be called directly. It MAY be implemented +The `_final()` method **must not** be called directly. It may be implemented by child classes, and if so, will be called by the internal Writable class methods only.