]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
Fix a few more typos in various files
authorzeertzjq <zeertzjq@outlook.com>
Sun, 15 Feb 2026 18:03:37 +0000 (18:03 +0000)
committerChristian Brabandt <cb@256bit.org>
Sun, 15 Feb 2026 18:03:37 +0000 (18:03 +0000)
closes: #19427

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/usr_41.txt
src/dict.c
src/evalfunc.c
src/testdir/test_plugin_comment.vim
src/testdir/test_plugin_termdebug.vim

index 098a4a0b73777a7db946defa86ebcae92d74222a..b5c572a077201da5ea8db4c4cbf5e64f09025742 100644 (file)
@@ -1,4 +1,4 @@
-*usr_41.txt*   For Vim version 9.2.  Last change: 2026 Feb 14
+*usr_41.txt*   For Vim version 9.2.  Last change: 2026 Feb 16
 
 
                     VIM USER MANUAL    by Bram Moolenaar
@@ -38,7 +38,7 @@ language like for example .vim files or configuration files like .vimrc and
 uses to customize and extend its behavior.
 
                                                *vim-script-notation*
-The correct notation is "Vim script" (or "Vim9 script" when refering to the
+The correct notation is "Vim script" (or "Vim9 script" when referring to the
 new Vim9 language |Vim9-script|), so we will use "Vim script" to refer to the
 Vim scripting language throughout this documentation. This shorthand helps to
 streamline explanations and discussions about scripting with Vim.
index 0eb5a481aa9c319c3d090e2739bd17dd369c5ed1..b888a68983b1a8f45e5c7e5fa3581b76107e3986 100644 (file)
@@ -1606,7 +1606,7 @@ dict2list(typval_T *argvars, typval_T *rettv, dict2list_T what)
 }
 
 /*
- * "items()" function
+ * "items(dict)" function
  */
     void
 dict2items(typval_T *argvars, typval_T *rettv)
index 5d074d44ef748d20d3a6b15bb851d05e174326b9..47f187ee705f9d3ba079b75abe2c3e1711a138ea 100644 (file)
@@ -8789,7 +8789,7 @@ f_islocked(typval_T *argvars, typval_T *rettv)
 }
 
 /*
- * "items(dict)" function
+ * "items()" function
  */
     static void
 f_items(typval_T *argvars, typval_T *rettv)
index 597a04d47da6d482d66795d245086e64099c5882..befae9a4d2e57530ffdfe76b8c487c46b5b2b2a0 100644 (file)
@@ -508,7 +508,7 @@ endfunc
 func Test_textobj_cursor_on_leading_space_comment()
   let lines =<< trim END
     int main() {
-        // multilple comments
+        // multiple comments
         // cursor is between them
     }
   END
index 1f6fd36e4ba1b516784905851bded003dbb05795..deedffe8f7f4cc0ae243faeb3e4751108ca17961 100644 (file)
@@ -705,7 +705,7 @@ func Test_termdebug_remote_basic()
   defer delete(src_shadow_dir, 'rf')
 
   let modes = [v:true]
-  " termdebug only wokrs fine if socat is available on the remote machine
+  " termdebug only works fine if socat is available on the remote machine
   " otherwise the communication pty will be unstable
   if executable('socat')
     let modes += [v:false]