diff --git a/doc/api/fs.md b/doc/api/fs.md index a9e1e3fd4bd1a6..8ebe58412de3cc 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -867,7 +867,7 @@ added: v0.1.95 * `callback` {Function} Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where -`stats` is a [`fs.Stats`][] object. `fstat()` is identical to [`stat()`][], +`stats` is an [`fs.Stats`][] object. `fstat()` is identical to [`stat()`][], except that the file to be stat-ed is specified by the file descriptor `fd`. ## fs.fstatSync(fd) @@ -877,7 +877,7 @@ added: v0.1.95 * `fd` {Integer} -Synchronous fstat(2). Returns an instance of `fs.Stats`. +Synchronous fstat(2). Returns an instance of [`fs.Stats`][]. ## fs.fsync(fd, callback)