@@ -1422,7 +1422,7 @@ If the loop terminates with a `break` or a `throw`, the stream will be
1422
1422
destroyed. In other terms, iterating over a stream will consume the stream
1423
1423
fully. The stream will be read in chunks of size equal to the ` highWaterMark `
1424
1424
option. In the code example above, data will be in a single chunk if the file
1425
- has less then 64kb of data because no ` highWaterMark ` option is provided to
1425
+ has less then 64KB of data because no ` highWaterMark ` option is provided to
1426
1426
[ ` fs.createReadStream() ` ] [ ] .
1427
1427
1428
1428
### Duplex and Transform Streams
@@ -1750,7 +1750,7 @@ changes:
1750
1750
* ` options ` {Object}
1751
1751
* ` highWaterMark ` {number} Buffer level when
1752
1752
[ ` stream.write() ` ] [ stream-write ] starts returning ` false ` . ** Default:**
1753
- ` 16384 ` (16kb ), or ` 16 ` for ` objectMode ` streams.
1753
+ ` 16384 ` (16KB ), or ` 16 ` for ` objectMode ` streams.
1754
1754
* ` decodeStrings ` {boolean} Whether to encode ` string ` s passed to
1755
1755
[ ` stream.write() ` ] [ stream-write ] to ` Buffer ` s (with the encoding
1756
1756
specified in the [ ` stream.write() ` ] [ stream-write ] call) before passing
@@ -2026,7 +2026,7 @@ changes:
2026
2026
* ` options ` {Object}
2027
2027
* ` highWaterMark ` {number} The maximum [ number of bytes] [ hwm-gotcha ] to store
2028
2028
in the internal buffer before ceasing to read from the underlying resource.
2029
- ** Default:** ` 16384 ` (16kb ), or ` 16 ` for ` objectMode ` streams.
2029
+ ** Default:** ` 16384 ` (16KB ), or ` 16 ` for ` objectMode ` streams.
2030
2030
* ` encoding ` {string} If specified, then buffers will be decoded to
2031
2031
strings using the specified encoding. ** Default:** ` null ` .
2032
2032
* ` objectMode ` {boolean} Whether this stream should behave
0 commit comments