Skip to content

Commit

Permalink
doc: correct added: information for fs.access
Browse files Browse the repository at this point in the history
fs.access and fs.accessSync were added to Node v0.11.15 via 2944934

PR-URL: #7299
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Ref: #6717
Ref: #6578
  • Loading branch information
richardlau authored and addaleax committed Jun 18, 2016
1 parent 3fe3b41 commit a06ccdb
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit a06ccdb

Please sign in to comment.