summaryrefslogtreecommitdiff
path: root/runtime/doc/version5.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-06-19 14:35:59 +0200
committerBram Moolenaar <Bram@vim.org>2018-06-19 14:35:59 +0200
commitd2f3a8b8787333abf2300d38836b196955f10c00 (patch)
tree9c567b7780a62c5b7eb5b8fbfd42d973d6721498 /runtime/doc/version5.txt
parentc166927a32fe5c054ad35deecff00aa12c629cf7 (diff)
downloadvim-git-d2f3a8b8787333abf2300d38836b196955f10c00.tar.gz
Update runtime files.
Diffstat (limited to 'runtime/doc/version5.txt')
-rw-r--r--runtime/doc/version5.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/version5.txt b/runtime/doc/version5.txt
index a3e3cfeb1..f87d904df 100644
--- a/runtime/doc/version5.txt
+++ b/runtime/doc/version5.txt
@@ -221,8 +221,8 @@ The most obvious side effect of this change is that when you source a vimrc
file twice, the autocommands in it will be defined twice. To avoid this, do
one of these:
-- Remove any autocommands that might potentially defined twice before
- defining them. Example: >
+- Remove any autocommands that might already be defined before defining
+ them. Example: >
:au! * *.ext
:au BufEnter *.ext ...