doc: fix typo in stream doc

Fix small typo in Buffering section of stream doc.
PR-URL: https://github.com/nodejs/node/pull/7738
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
Kevin Donahue 2016-07-14 12:55:31 -04:00 committed by Anna Henningsen
parent 45367a2a8f
commit c09dfe3a0b
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF

View File

@ -87,7 +87,7 @@ total size of the internal write buffer is below the threshold set by
the size of the internal buffer reaches or exceeds the `highWaterMark`, `false` the size of the internal buffer reaches or exceeds the `highWaterMark`, `false`
will be returned. will be returned.
A key goal of the `stream` API, an in particular the [`stream.pipe()`] method, A key goal of the `stream` API, and in particular the [`stream.pipe()`] method,
is to limit the buffering of data to acceptable levels such that sources and is to limit the buffering of data to acceptable levels such that sources and
destinations of differing speeds will not overwhelm the available memory. destinations of differing speeds will not overwhelm the available memory.