Skip to content

Commit e2473fe

Browse files
zeertzjqchrisbra
authored andcommitted
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>
1 parent ac1d379 commit e2473fe

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

runtime/doc/usr_41.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim version 9.2. Last change: 2026 Feb 14
1+
*usr_41.txt* For Vim version 9.2. Last change: 2026 Feb 16
22

33

44
VIM USER MANUAL by Bram Moolenaar
@@ -38,7 +38,7 @@ language like for example .vim files or configuration files like .vimrc and
3838
uses to customize and extend its behavior.
3939

4040
*vim-script-notation*
41-
The correct notation is "Vim script" (or "Vim9 script" when refering to the
41+
The correct notation is "Vim script" (or "Vim9 script" when referring to the
4242
new Vim9 language |Vim9-script|), so we will use "Vim script" to refer to the
4343
Vim scripting language throughout this documentation. This shorthand helps to
4444
streamline explanations and discussions about scripting with Vim.

src/dict.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,7 +1606,7 @@ dict2list(typval_T *argvars, typval_T *rettv, dict2list_T what)
16061606
}
16071607

16081608
/*
1609-
* "items()" function
1609+
* "items(dict)" function
16101610
*/
16111611
void
16121612
dict2items(typval_T *argvars, typval_T *rettv)

src/evalfunc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8789,7 +8789,7 @@ f_islocked(typval_T *argvars, typval_T *rettv)
87898789
}
87908790

87918791
/*
8792-
* "items(dict)" function
8792+
* "items()" function
87938793
*/
87948794
static void
87958795
f_items(typval_T *argvars, typval_T *rettv)

src/testdir/test_plugin_comment.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ endfunc
508508
func Test_textobj_cursor_on_leading_space_comment()
509509
let lines =<< trim END
510510
int main() {
511-
// multilple comments
511+
// multiple comments
512512
// cursor is between them
513513
}
514514
END

src/testdir/test_plugin_termdebug.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ func Test_termdebug_remote_basic()
705705
defer delete(src_shadow_dir, 'rf')
706706

707707
let modes = [v:true]
708-
" termdebug only wokrs fine if socat is available on the remote machine
708+
" termdebug only works fine if socat is available on the remote machine
709709
" otherwise the communication pty will be unstable
710710
if executable('socat')
711711
let modes += [v:false]

0 commit comments

Comments
 (0)