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: remove redundant parameter comments from fs #5952

Closed
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
10 changes: 0 additions & 10 deletions doc/api/fs.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -821,9 +821,6 @@ The callback is given the three arguments, `(err, bytesRead, buffer)`.
* `encoding` {String} default = `'utf8'`
* `callback` {Function}

* `path` {String}
* `callback` {Function}

Asynchronous readdir(3). Reads the contents of a directory.
The callback gets two arguments `(err, files)` where `files` is an array of
the names of the files in the directory excluding `'.'` and `'..'`.
Expand All @@ -839,8 +836,6 @@ the filenames returned will be passed as `Buffer` objects.
* `options` {String | Object}
* `encoding` {String} default = `'utf8'`

* `path` {String}

Synchronous readdir(3). Returns an array of filenames excluding `'.'` and
`'..'`.

Expand Down Expand Up @@ -900,9 +895,6 @@ string. Otherwise it returns a buffer.
* `encoding` {String} default = `'utf8'`
* `callback` {Function}

* `path` {String}
* `callback` {Function}

Asynchronous readlink(2). The callback gets two arguments `(err,
linkString)`.

Expand All @@ -917,8 +909,6 @@ the link path returned will be passed as a `Buffer` object.
* `options` {String | Object}
* `encoding` {String} default = `'utf8'`

* `path` {String}

Synchronous readlink(2). Returns the symbolic link's string value.

The optional `options` argument can be a string specifying an encoding, or an
Expand Down