diff options
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 7630ff9d77..eb3956d155 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -7551,7 +7551,7 @@ M.funcs = { the new directory. The default is 0o755 (rwxr-xr-x: r/w for the user, readable for others). Use 0o700 to make it unreadable for others. This is used for the newly created - directories. Note an umask is applied to {prot} (on Unix). + directories. Note: umask is applied to {prot} (on Unix). Example: >vim call mkdir($HOME .. "/tmp/foo/bar", "p", 0o700) |