doc: correct added: information for fs.access

fs.access and fs.accessSync were added to Node v0.11.15 via 2944934

PR-URL: https://github.com/nodejs/node/pull/7299
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Ref: https://github.com/nodejs/node/pull/6717
Ref: https://github.com/nodejs/node/issues/6578
This commit is contained in:
Richard Lau 2016-06-14 15:57:22 -04:00 committed by Anna Henningsen
parent 3fe3b41321
commit a06ccdbdb5
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF

View File

@ -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}
@ -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}