Skip to content

Commit 4f728df

Browse files
Kevin DonahueFishrock123
Kevin Donahue
authored andcommitted
doc: linkify remaining references to fs.Stats object
One reference to the `fs.Stats object` is linkified, while two other similarly made references to the object are not linkified. Linking the remaining references makes sense due to similar context. PR-URL: #6485 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 9a29b50 commit 4f728df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/fs.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -563,8 +563,8 @@ Synchronous fdatasync(2). Returns `undefined`.
563563
* `callback` {Function}
564564

565565
Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where
566-
`stats` is a `fs.Stats` object. `fstat()` is identical to [`stat()`][], except that
567-
the file to be stat-ed is specified by the file descriptor `fd`.
566+
`stats` is a [`fs.Stats`][] object. `fstat()` is identical to [`stat()`][],
567+
except that the file to be stat-ed is specified by the file descriptor `fd`.
568568

569569
## fs.fstatSync(fd)
570570

@@ -678,9 +678,9 @@ Synchronous link(2). Returns `undefined`.
678678
* `callback` {Function}
679679

680680
Asynchronous lstat(2). The callback gets two arguments `(err, stats)` where
681-
`stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if
682-
`path` is a symbolic link, then the link itself is stat-ed, not the file that it
683-
refers to.
681+
`stats` is a [`fs.Stats`][] object. `lstat()` is identical to `stat()`,
682+
except that if `path` is a symbolic link, then the link itself is stat-ed,
683+
not the file that it refers to.
684684

685685
## fs.lstatSync(path)
686686

0 commit comments

Comments
 (0)