Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fs: fix linter issue in chmod example in fs.md
  • Loading branch information
roadev committed Jun 25, 2019
commit 4be1f416e2259131775642988f7101c1e97e4199
2 changes: 1 addition & 1 deletion doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ implemented.
fs.chmod('my_file.txt', 775, (err) => {
if (err) throw err;
console.log('The permissions for file "my_file.txt" have been changed!');
})
});
```

## fs.chmodSync(path, mode)
Expand Down