Skip to content
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
doc: correct added: information for fs.access
fs.access and fs.accessSync were added to Node v0.11.15 via 2944934
  • Loading branch information
richardlau committed Jun 14, 2016
commit ba7a7993b8896aa571609e14cdb3c05a813262b9
4 changes: 2 additions & 2 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ argument to `fs.createWriteStream()`. If `path` is passed as a string, then

## fs.access(path[, mode], callback)
<!-- YAML
added: v1.0.0
added: v0.11.15
-->

* `path` {String | Buffer}
Expand Down Expand Up @@ -336,7 +336,7 @@ fs.access('/etc/passwd', fs.constants.R_OK | fs.constants.W_OK, (err) => {

## fs.accessSync(path[, mode])
<!-- YAML
added: v0.1.93
added: v0.11.15
-->

* `path` {String | Buffer}
Expand Down