]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Fix typo in usr_41.txt
authorDoug Kearns <dougkearns@gmail.com>
Sun, 25 Feb 2024 14:21:54 +0000 (15:21 +0100)
committerChristian Brabandt <cb@256bit.org>
Sun, 25 Feb 2024 14:23:02 +0000 (15:23 +0100)
closes: #14092

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/usr_41.txt

index 0d832a34c93b8fdc67cb4b1c65efe2ad242a222a..04a9afb1b14eba662aab67203ee479779c78ce5d 100644 (file)
@@ -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: >