summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2024-02-25 15:21:54 +0100
committerChristian Brabandt <cb@256bit.org>2024-02-25 15:23:02 +0100
commitdb7622ea827034124c22da0c235ff5170e44b8bc (patch)
tree130b35f426c68127617aafc29b4de8fd3c5ba44a /runtime
parentd086b8f646a67f6b16c46061ce773de1011b8ec7 (diff)
runtime(doc): Fix typo in usr_41.txt
closes: #14092 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/usr_41.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 0d832a34c9..04a9afb1b1 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1,4 +1,4 @@
-*usr_41.txt* For Vim version 9.1. Last change: 2024 Feb 20
+*usr_41.txt* For Vim version 9.1. Last change: 2024 Feb 25
VIM USER MANUAL - by Bram Moolenaar
@@ -69,7 +69,7 @@ The output of the example code is:
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. It is
-recommended to put it in the very fist line, before any comments.
+recommended to put it in the very first line, before any comments.
*vim9-declarations*
The `var i = 1` command declares the "i" variable and initializes it. The
generic form is: >