Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c9b144d

Browse filesBrowse files
Kevin DonahueMyles Borins
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 <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent d909c25 commit c9b144d
Copy full SHA for c9b144d

File tree

Expand file treeCollapse file tree

1 file changed

+5
-5
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+5
-5
lines changed
Open diff view settings
Collapse file

‎doc/api/fs.markdown‎

Copy file name to clipboardExpand all lines: doc/api/fs.markdown
+5-5Lines changed: 5 additions & 5 deletions
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.