diff --git a/doc/api/fs.md b/doc/api/fs.md index 21bb160313cb09..4ac95d58e20230 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -3209,6 +3209,9 @@ from the current position. The callback will be given three arguments: `err`, `bytesRead`, and `buffers`. `bytesRead` is how many bytes were read from the file. +If this method is invoked as its [`util.promisify()`][]ed version, it returns +a `Promise` for an `Object` with `bytesRead` and `buffers` properties. + ## `fs.readvSync(fd, buffers[, position])`