From fd4aa6c16aca9cb8b9bfcbfcabda2d577a850934 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 166ad6a63e033b..f0910d24892907 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -273,7 +273,7 @@ The path to the file the stream is writing to. ## fs.access(path[, mode], callback) 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) => { ## fs.accessSync(path[, mode]) Synchronous version of [`fs.access()`][]. This throws if any accessibility checks