summaryrefslogtreecommitdiffstats
path: root/runtime/doc/usr_41.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-06 20:52:59 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-06 20:52:59 +0100
commit016188fd8a30cfbaca3faa0daea9a47138dc5c4b (patch)
tree5c04e35f0054ca6c3d7276e76a0ef4a494e890e2 /runtime/doc/usr_41.txt
parent3760bfddc414e4d3e1c4203db8c22e293cf08d09 (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r--runtime/doc/usr_41.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 214b8c70ed..6d135364b4 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1,4 +1,4 @@
-*usr_41.txt* For Vim version 8.2. Last change: 2022 Jun 03
+*usr_41.txt* For Vim version 8.2. Last change: 2022 Jun 04
VIM USER MANUAL - by Bram Moolenaar
@@ -66,7 +66,8 @@ The output of the example code is:
count is 4 ~
In the first line the `vim9script` command makes clear this is a new, |Vim9|
-script file. That matters for how the rest of the file is used.
+script file. That matters for how the rest of the file is used. It is
+recommended to put it in the very fist line, before any comments.
*vim9-declarations*
The `var i = 1` command declares the "i" variable and initializes it. The
generic form is: >
@@ -1791,7 +1792,7 @@ encountered, execution of the script/function/mapping will be aborted.
When the `read` command causes another error, the pattern "E484:" will not
match in it. Thus this exception will not be caught and result in the usual
-error message and excecution is aborted.
+error message and execution is aborted.
You might be tempted to do this: >