Browse Source

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
v7.x
Richard Lau 9 years ago
committed by Anna Henningsen
parent
commit
a06ccdbdb5
No known key found for this signature in database GPG Key ID: D8B9F5AEAE84E4CF
  1. 4
      doc/api/fs.md

4
doc/api/fs.md

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

Loading…
Cancel
Save