@@ -1509,7 +1509,7 @@ If the loop terminates with a `break`, `return`, or a `throw`, the stream will
15091509be destroyed. In other terms, iterating over a stream will consume the stream
15101510fully. The stream will be read in chunks of size equal to the ` highWaterMark `
15111511option. 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
15131513[ ` fs.createReadStream() ` ] [ ] .
15141514
15151515##### ` readable.iterator([options]) `
@@ -2053,7 +2053,7 @@ changes:
20532053* ` options ` {Object}
20542054 * ` highWaterMark ` {number} Buffer level when
20552055 [ ` 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.
20572057 * ` decodeStrings ` {boolean} Whether to encode ` string ` s passed to
20582058 [ ` stream.write() ` ] [ stream-write ] to ` Buffer ` s (with the encoding
20592059 specified in the [ ` stream.write() ` ] [ stream-write ] call) before passing
@@ -2416,7 +2416,7 @@ changes:
24162416* ` options ` {Object}
24172417 * ` highWaterMark ` {number} The maximum [ number of bytes] [ hwm-gotcha ] to store
24182418 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.
24202420 * ` encoding ` {string} If specified, then buffers will be decoded to
24212421 strings using the specified encoding. ** Default:** ` null ` .
24222422 * ` objectMode ` {boolean} Whether this stream should behave
0 commit comments