@@ -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
@@ -2094,8 +2094,8 @@ changes:
20942094 * `fs` {Object|null} **Default:** `null`
20952095* Returns: {fs.ReadStream}
20962096
2097- Unlike the 16 kb default `highWaterMark` for a {stream.Readable}, the stream
2098- returned by this method has a default `highWaterMark` of 64 kb .
2097+ Unlike the 16 KiB default `highWaterMark` for a {stream.Readable}, the stream
2098+ returned by this method has a default `highWaterMark` of 64 KiB .
20992099
21002100`options` can include `start` and `end` values to read a range of bytes from
21012101the file instead of the entire file. Both `start` and `end` are inclusive and
@@ -3233,8 +3233,8 @@ to read a complete file into memory.
32333233The additional read overhead can vary broadly on different systems and depends
32343234on the type of file being read . If the file type is not a regular file (a pipe
32353235for instance) and Node .js is unable to determine an actual file size, each read
3236- operation will load on 64 KB of data . For regular files, each read will process
3237- 512 KB of data.
3236+ operation will load on 64 KiB of data . For regular files, each read will process
3237+ 512 KiB of data.
32383238
32393239For applications that require as- fast- as- possible reading of file contents, it
32403240is better to use ` fs.read()` directly and for application code to manage
0 commit comments