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
v6.x
Richard Lau 9 years ago
committed by Evan Lucas
parent
commit
cd7c29e471
  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.R_OK | fs.W_OK, (err) => {
## fs.accessSync(path[, mode])
<!-- YAML
added: v0.1.93
added: v0.11.15
-->
* `path` {String | Buffer}

Loading…
Cancel
Save