Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix "referred to" in fs docs #37388

Merged
merged 1 commit into from
Feb 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ added: v10.0.0
* `encoding` {string} **Default:** `'utf8'`
* Returns: {Promise} Fulfills with the `linkString` upon success.
Reads the contents of the symbolic link refered to by `path`. See the POSIX
Reads the contents of the symbolic link referred to by `path`. See the POSIX
readlink(2) documentation for more etail. The promise is resolved with the
`linkString` upon success.
Expand Down Expand Up @@ -2459,7 +2459,7 @@ changes:
* `err` {Error}
* `stats` {fs.Stats}
Retrieves the {fs.Stats} for the symbolic link refered to by the path.
Retrieves the {fs.Stats} for the symbolic link referred to by the path.
The callback gets two arguments `(err, stats)` where `stats` is a {`fs.Stats}
object. `lstat()` is identical to `stat()`, except that if `path` is a symbolic
link, then the link itself is stat-ed, not the file that it refers to.
Expand Down Expand Up @@ -2960,7 +2960,7 @@ changes:
* `err` {Error}
* `linkString` {string|Buffer}

Reads the contents of the symbolic link refered to by `path`. The callback gets
Reads the contents of the symbolic link referred to by `path`. The callback gets
two arguments `(err, linkString)`.

See the POSIX readlink(2) documentation for more details.
Expand Down Expand Up @@ -4403,7 +4403,7 @@ changes:
**Default:** `true`.
* Returns: {fs.Stats}
Retrieves the {fs.Stats} for the symbolic link refered to by `path`.
Retrieves the {fs.Stats} for the symbolic link referred to by `path`.
See the POSIX lstat(2) documentation for more details.
Expand Down