Skip to content

Commit c9b144d

Browse files
Kevin DonahueMyles Borins
Kevin Donahue
authored and
Myles Borins
committed
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 d909c25 commit c9b144d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/fs.markdown

+5-5
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,8 @@ Synchronous fdatasync(2). Returns `undefined`.
438438
## fs.fstat(fd, callback)
439439

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

444444
## fs.fstatSync(fd)
445445

@@ -504,9 +504,9 @@ Synchronous link(2). Returns `undefined`.
504504
## fs.lstat(path, callback)
505505

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

511511
## fs.lstatSync(path)
512512

0 commit comments

Comments
 (0)