From 858bc0ad174f6f93f703027edd4b241f27129413 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 documentation --- 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 e233c480b61902..02e3a946c025e4 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.