From 9f18878eee7a74abcb4511ccd2c15bcdc356de3b 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 70a2762399e269..626f352f65ae52 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.