From f7dd3bc19ffe031d4610b0250f7a0f6fa5c6eba9 Mon Sep 17 00:00:00 2001 From: Hubert Mine Date: Mon, 29 Aug 2016 20:53:10 +0200 Subject: [PATCH] doc: fix typo in stream doc PR-URL: https://github.com/nodejs/node/pull/8326 Reviewed-By: Anna Henningsen Reviewed-By: Brian White Reviewed-By: Matteo Collina Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca --- 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 e233c480b6..02e3a946c0 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -83,7 +83,7 @@ used to fill the read buffer). Data is buffered in Writable streams when the [`writable.write(chunk)`][stream-write] method is called repeatedly. While the total size of the internal write buffer is below the threshold set by -`highWaterMark`, calls to `writable.write()` will return `true`. Once the +`highWaterMark`, calls to `writable.write()` will return `true`. Once the size of the internal buffer reaches or exceeds the `highWaterMark`, `false` will be returned.