summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-promises-file-handle-chmod.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-fs-promises-file-handle-chmod.js')
-rw-r--r--test/parallel/test-fs-promises-file-handle-chmod.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-fs-promises-file-handle-chmod.js b/test/parallel/test-fs-promises-file-handle-chmod.js
index 6b51639d41..cb7a1c6317 100644
--- a/test/parallel/test-fs-promises-file-handle-chmod.js
+++ b/test/parallel/test-fs-promises-file-handle-chmod.js
@@ -25,10 +25,10 @@ async function validateFilePermission() {
const newPermissions = 0o765;
if (common.isWindows) {
- // chmod in Windows will only toggle read only/write access. the
+ // Chmod in Windows will only toggle read only/write access. The
// fs.Stats.mode in Windows is computed using read/write
- // bits (not exec). read only at best returns 444; r/w 666.
- // refer: /deps/uv/src/win/fs.cfs;
+ // bits (not exec). Read-only at best returns 444; r/w 666.
+ // Refer: /deps/uv/src/win/fs.cfs;
expectedAccess = 0o664;
} else {
expectedAccess = newPermissions;