diff --git a/doc/api/fs.md b/doc/api/fs.md index bd374ff08b1af5..ed3261d972a390 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -3130,6 +3130,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])`