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

fix fs.read documentation typo read instead of write #29270

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
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
Next Next commit
fix fs.read documentation typo read instead of write
  • Loading branch information
hachimiSfeir committed Aug 22, 2019
commit 58c2ab78dbe72a7058ac2e67225c32e83e8b78c8
4 changes: 2 additions & 2 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2503,9 +2503,9 @@ changes:

Read data from the file specified by `fd`.

`buffer` is the buffer that the data will be written to.
`buffer` is the buffer that the data will be reading from.
HACHIMIam marked this conversation as resolved.
Show resolved Hide resolved

`offset` is the offset in the buffer to start writing at.
`offset` is the offset in the buffer to start reading from.
HACHIMIam marked this conversation as resolved.
Show resolved Hide resolved

`length` is an integer specifying the number of bytes to read.

Expand Down