@@ -1511,7 +1511,7 @@ If the loop terminates with a `break`, `return`, or a `throw`, the stream will
15111511be destroyed. In other terms, iterating over a stream will consume the stream
15121512fully. The stream will be read in chunks of size equal to the ` highWaterMark `
15131513option. In the code example above, data will be in a single chunk if the file
1514- has less then 64KB of data because no ` highWaterMark ` option is provided to
1514+ has less then 64 KB of data because no ` highWaterMark ` option is provided to
15151515[ ` fs.createReadStream() ` ] [ ] .
15161516
15171517##### ` readable.iterator([options]) `
@@ -2052,7 +2052,7 @@ changes:
20522052* ` options ` {Object}
20532053 * ` highWaterMark ` {number} Buffer level when
20542054 [ ` stream.write() ` ] [ stream-write ] starts returning ` false ` . ** Default:**
2055- ` 16384 ` (16KB ), or ` 16 ` for ` objectMode ` streams.
2055+ ` 16384 ` (16 KB ), or ` 16 ` for ` objectMode ` streams.
20562056 * ` decodeStrings ` {boolean} Whether to encode ` string ` s passed to
20572057 [ ` stream.write() ` ] [ stream-write ] to ` Buffer ` s (with the encoding
20582058 specified in the [ ` stream.write() ` ] [ stream-write ] call) before passing
@@ -2415,7 +2415,7 @@ changes:
24152415* ` options ` {Object}
24162416 * ` highWaterMark ` {number} The maximum [ number of bytes] [ hwm-gotcha ] to store
24172417 in the internal buffer before ceasing to read from the underlying resource.
2418- ** Default:** ` 16384 ` (16KB ), or ` 16 ` for ` objectMode ` streams.
2418+ ** Default:** ` 16384 ` (16 KB ), or ` 16 ` for ` objectMode ` streams.
24192419 * ` encoding ` {string} If specified, then buffers will be decoded to
24202420 strings using the specified encoding. ** Default:** ` null ` .
24212421 * ` objectMode ` {boolean} Whether this stream should behave
0 commit comments