From: zeertzjq Date: Sun, 15 Feb 2026 18:03:37 +0000 (+0000) Subject: Fix a few more typos in various files X-Git-Tag: v9.2.0011~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2473fe438f8f0c85ffc9cebf7410a959cd7928f;p=thirdparty%2Fvim.git Fix a few more typos in various files closes: #19427 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt index 098a4a0b73..b5c572a077 100644 --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -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. diff --git a/src/dict.c b/src/dict.c index 0eb5a481aa..b888a68983 100644 --- a/src/dict.c +++ b/src/dict.c @@ -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) diff --git a/src/evalfunc.c b/src/evalfunc.c index 5d074d44ef..47f187ee70 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -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) diff --git a/src/testdir/test_plugin_comment.vim b/src/testdir/test_plugin_comment.vim index 597a04d47d..befae9a4d2 100644 --- a/src/testdir/test_plugin_comment.vim +++ b/src/testdir/test_plugin_comment.vim @@ -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 diff --git a/src/testdir/test_plugin_termdebug.vim b/src/testdir/test_plugin_termdebug.vim index 1f6fd36e4b..deedffe8f7 100644 --- a/src/testdir/test_plugin_termdebug.vim +++ b/src/testdir/test_plugin_termdebug.vim @@ -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]