doc: fix typo in stream doc

PR-URL: https://github.com/nodejs/node/pull/8326
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Hubert Mine 2016-08-29 20:53:10 +02:00 committed by Luigi Pinca
parent 870faeef95
commit f7dd3bc19f

View File

@ -83,7 +83,7 @@ used to fill the read buffer).
Data is buffered in Writable streams when the Data is buffered in Writable streams when the
[`writable.write(chunk)`][stream-write] method is called repeatedly. While 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 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` the size of the internal buffer reaches or exceeds the `highWaterMark`, `false`
will be returned. will be returned.