Fix a few more typos in various files

closes: #19427

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2026-02-15 18:03:37 +00:00
committed by Christian Brabandt
parent ac1d379f3b
commit e2473fe438
5 changed files with 6 additions and 6 deletions
+2 -2
View 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.
+1 -1
View 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)
+1 -1
View 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)
+1 -1
View 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
+1 -1
View 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]