From cd7c29e4716e8eb46568c9ce6b26d7b8347faf24 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 14 Jun 2016 15:57:22 -0400 Subject: [PATCH] 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 Ref: https://github.com/nodejs/node/pull/6717 Ref: https://github.com/nodejs/node/issues/6578 --- doc/api/fs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index a25e59b6c3aeb9..e752a1b33dde94 100644 --- a/doc/api/fs.md +++ b/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) * `path` {String | Buffer} @@ -336,7 +336,7 @@ fs.access('/etc/passwd', fs.R_OK | fs.W_OK, (err) => { ## fs.accessSync(path[, mode]) * `path` {String | Buffer}