summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-06-14 20:22:05 +0200
committerChristian Brabandt <cb@256bit.org>2024-06-14 20:23:00 +0200
commitc509c009bbc07eff678a9239a5813398e180f019 (patch)
treee32d3b45835e8ff42c2c30a985b7e0a15fa2c01e
parent262e25e5a10438770dc9e23e0d5ffcb116f05d0f (diff)
runtime(doc): fix wrong helptag for :defer
Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--runtime/doc/builtin.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 862a1dfc62..ff7078ea88 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt* For Vim version 9.1. Last change: 2024 Jun 13
+*builtin.txt* For Vim version 9.1. Last change: 2024 Jun 14
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7332,9 +7332,9 @@ mkdir({name} [, {flags} [, {prot}]]) *mkdir()* *E739*
{flags} can contain these character flags:
"p" intermediate directories will be created as necessary
"D" {name} will be deleted at the end of the current
- function, but not recursively |defer|
+ function, but not recursively |:defer|
"R" {name} will be deleted recursively at the end of the
- current function |defer|
+ current function |:defer|
Note that when {name} has more than one part and "p" is used
some directories may already exist. Only the first one that