diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown index 64e4a156fa7d87..d1e9f7eb3293c6 100644 --- a/doc/api/fs.markdown +++ b/doc/api/fs.markdown @@ -429,6 +429,15 @@ to the completion callback. Synchronous fchown(2). Returns `undefined`. +## fs.fdatasync(fd, callback) + +Asynchronous fdatasync(2). No arguments other than a possible exception are +given to the completion callback. + +## fs.fdatasyncSync(fd) + +Synchronous fdatasync(2). Returns `undefined`. + ## fs.fstat(fd, callback) Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where