@@ -1509,7 +1509,7 @@ If the loop terminates with a `break`, `return`, or a `throw`, the stream will
1509
1509
be destroyed. In other terms, iterating over a stream will consume the stream
1510
1510
fully. The stream will be read in chunks of size equal to the ` highWaterMark `
1511
1511
option. In the code example above, data will be in a single chunk if the file
1512
- has less then 64KB of data because no ` highWaterMark ` option is provided to
1512
+ has less then 64 KB of data because no ` highWaterMark ` option is provided to
1513
1513
[ ` fs.createReadStream() ` ] [ ] .
1514
1514
1515
1515
##### ` readable.iterator([options]) `
@@ -2053,7 +2053,7 @@ changes:
2053
2053
* ` options ` {Object}
2054
2054
* ` highWaterMark ` {number} Buffer level when
2055
2055
[ ` stream.write() ` ] [ stream-write ] starts returning ` false ` . ** Default:**
2056
- ` 16384 ` (16KB ), or ` 16 ` for ` objectMode ` streams.
2056
+ ` 16384 ` (16 KB ), or ` 16 ` for ` objectMode ` streams.
2057
2057
* ` decodeStrings ` {boolean} Whether to encode ` string ` s passed to
2058
2058
[ ` stream.write() ` ] [ stream-write ] to ` Buffer ` s (with the encoding
2059
2059
specified in the [ ` stream.write() ` ] [ stream-write ] call) before passing
@@ -2416,7 +2416,7 @@ changes:
2416
2416
* ` options ` {Object}
2417
2417
* ` highWaterMark ` {number} The maximum [ number of bytes] [ hwm-gotcha ] to store
2418
2418
in the internal buffer before ceasing to read from the underlying resource.
2419
- ** Default:** ` 16384 ` (16KB ), or ` 16 ` for ` objectMode ` streams.
2419
+ ** Default:** ` 16384 ` (16 KB ), or ` 16 ` for ` objectMode ` streams.
2420
2420
* ` encoding ` {string} If specified, then buffers will be decoded to
2421
2421
strings using the specified encoding. ** Default:** ` null ` .
2422
2422
* ` objectMode ` {boolean} Whether this stream should behave
0 commit comments