Skip to content

Commit fd4aa6c

Browse files
richardlauMyles Borins
authored and
Myles Borins
committed
doc: correct added: information for fs.access
fs.access and fs.accessSync were added to Node v0.11.15 via 2944934 PR-URL: #7299 Reviewed-By: Anna Henningsen <[email protected]> Ref: #6717 Ref: #6578
1 parent 1e9d27c commit fd4aa6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/fs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ The path to the file the stream is writing to.
273273

274274
## fs.access(path[, mode], callback)
275275
<!-- YAML
276-
added: v1.0.0
276+
added: v0.11.15
277277
-->
278278

279279
Tests a user's permissions for the file specified by `path`. `mode` is an
@@ -302,7 +302,7 @@ fs.access('/etc/passwd', fs.R_OK | fs.W_OK, (err) => {
302302

303303
## fs.accessSync(path[, mode])
304304
<!-- YAML
305-
added: v0.1.93
305+
added: v0.11.15
306306
-->
307307

308308
Synchronous version of [`fs.access()`][]. This throws if any accessibility checks

0 commit comments

Comments
 (0)