diff options
-rw-r--r-- | runtime/doc/builtin.txt | 2 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 2 | ||||
-rw-r--r-- | src/nvim/eval.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 1c6f1bf006..9214b33519 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -6797,7 +6797,7 @@ mkdir({name} [, {flags} [, {prot}]]) *mkdir()* *E73 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) diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index 6c2b6af583..6ffd0e9619 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -6174,7 +6174,7 @@ function vim.fn.min(expr) end --- 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) --- 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) |