0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

doc: update mode type for fchmod() functions

fs.fchmod() and fs.fchmodSync() both support strings as their
mode argument. This commit updates the documentation to
reflect this.

PR-URL: https://github.com/nodejs/node/pull/31115
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
cjihrig 2019-12-27 10:12:35 -05:00 committed by Rich Trott
parent ba4d68c8f3
commit 5854b21da5

View File

@ -1979,7 +1979,7 @@ changes:
-->
* `fd` {integer}
* `mode` {integer}
* `mode` {string|integer}
* `callback` {Function}
* `err` {Error}
@ -1992,7 +1992,7 @@ added: v0.4.7
-->
* `fd` {integer}
* `mode` {integer}
* `mode` {string|integer}
Synchronous fchmod(2). Returns `undefined`.