summaryrefslogtreecommitdiffstats
path: root/runtime/doc/usr_52.txt
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/doc/usr_52.txt')
-rw-r--r--runtime/doc/usr_52.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/usr_52.txt b/runtime/doc/usr_52.txt
index 222b899c32..8607cf9daa 100644
--- a/runtime/doc/usr_52.txt
+++ b/runtime/doc/usr_52.txt
@@ -1,4 +1,4 @@
-*usr_52.txt* For Vim version 9.1. Last change: 2022 Jun 04
+*usr_52.txt* For Vim version 9.1. Last change: 2024 May 16
VIM USER MANUAL - by Bram Moolenaar
@@ -45,7 +45,7 @@ private function: >
def GetReply(nr: number): string
if nr == 42
return 'yes'
- elseif nr = 22
+ elseif nr == 22
return 'maybe'
else
return 'no'
@@ -155,7 +155,7 @@ AUTOLOAD DIRECTORY
Another form is to use autoload with a script name that is not an absolute or
relative path: >
- import autload "monthlib.vim"
+ import autoload "monthlib.vim"
This will search for the script "monthlib.vim" in the autoload directories of
'runtimepath'. With Unix one of the directories often is "~/.vim/autoload".