From 236281c0e858243c1444d47bf2738516c25375e0 Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Thu, 14 Dec 2017 05:56:38 -0600 Subject: [PATCH 1/3] doc: improve fs api descriptions This improves the api descriptions for fs.chown, fs.chmod, and fs.mkdir along with their *Sync counterparts. --- doc/api/fs.md | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index fb8d246f03d845..101472afab90a7 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -669,8 +669,10 @@ changes: * `callback` {Function} * `err` {Error} -Asynchronous chmod(2). No arguments other than a possible exception are given -to the completion callback. +Asynchronously changes the mode of a file. No arguments other than a possible +exception are given to the completion callback. + +See also: chmod(2) ## fs.chmodSync(path, mode)