Browse Source

doc: improve fs.read() doc text

PR-URL: https://github.com/nodejs/node/pull/14631
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
v6.x
Rich Trott 8 years ago
committed by Myles Borins
parent
commit
f8fbac7842
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 6
      doc/api/fs.md

6
doc/api/fs.md

@ -1308,9 +1308,9 @@ Read data from the file specified by `fd`.
`length` is an integer specifying the number of bytes to read. `length` is an integer specifying the number of bytes to read.
`position` is an integer specifying where to begin reading from in the file. `position` is an argument specifying where to begin reading from in the file.
If `position` is `null`, data will be read from the current file position, If `position` is `null`, data will be read from the current file position,
and the file position will be updated for subsequent reads. and the file position will be updated.
If `position` is an integer, the file position will remain unchanged. If `position` is an integer, the file position will remain unchanged.
The callback is given the three arguments, `(err, bytesRead, buffer)`. The callback is given the three arguments, `(err, bytesRead, buffer)`.

Loading…
Cancel
Save