@@ -262,8 +262,8 @@ added: v16.11.0
262262 * ` highWaterMark` {integer} **Default:** ` 64 * 1024 `
263263* Returns: {fs.ReadStream}
264264
265- Unlike the 16 kb default ` highWaterMark` for a {stream.Readable}, the stream
266- returned by this method has a default ` highWaterMark` of 64 kb .
265+ Unlike the 16 KiB default ` highWaterMark` for a {stream.Readable}, the stream
266+ returned by this method has a default ` highWaterMark` of 64 KiB .
267267
268268` options` can include ` start` and ` end` values to read a range of bytes from
269269the file instead of the entire file. Both ` start` and ` end` are inclusive and
@@ -2186,8 +2186,8 @@ changes:
21862186 * `fs` {Object|null} **Default:** `null`
21872187* Returns: {fs.ReadStream}
21882188
2189- Unlike the 16 kb default `highWaterMark` for a {stream.Readable}, the stream
2190- returned by this method has a default `highWaterMark` of 64 kb .
2189+ Unlike the 16 KiB default `highWaterMark` for a {stream.Readable}, the stream
2190+ returned by this method has a default `highWaterMark` of 64 KiB .
21912191
21922192`options` can include `start` and `end` values to read a range of bytes from
21932193the file instead of the entire file. Both `start` and `end` are inclusive and
@@ -3430,8 +3430,8 @@ to read a complete file into memory.
34303430The additional read overhead can vary broadly on different systems and depends
34313431on the type of file being read . If the file type is not a regular file (a pipe
34323432for instance) and Node .js is unable to determine an actual file size, each read
3433- operation will load on 64 KB of data . For regular files, each read will process
3434- 512 KB of data.
3433+ operation will load on 64 KiB of data . For regular files, each read will process
3434+ 512 KiB of data.
34353435
34363436For applications that require as- fast- as- possible reading of file contents, it
34373437is better to use ` fs.read()` directly and for application code to manage
0 commit comments