diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-02 22:07:00 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-02 22:07:00 +0800 |
| commit | 65f603f72c387cfac7955d8dfe51b42d35caa0f8 (patch) | |
| tree | ee2734f0fe4e4d91f4f163ba99f64ce992948af9 /src/nvim/testdir | |
| parent | 44b88d8c310e778c55ef1f7a270d2651266054ca (diff) | |
| parent | 4716a578ae0c3516d685495bb55e40c939a4ac87 (diff) | |
| download | rneovim-65f603f72c387cfac7955d8dfe51b42d35caa0f8.tar.gz rneovim-65f603f72c387cfac7955d8dfe51b42d35caa0f8.tar.bz2 rneovim-65f603f72c387cfac7955d8dfe51b42d35caa0f8.zip | |
Merge pull request #20782 from dundargoc/docs/typos
docs: fix typos
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_options.vim | 2 | ||||
| -rw-r--r-- | src/nvim/testdir/test_vimscript.vim | 2 | ||||
| -rw-r--r-- | src/nvim/testdir/test_window_cmd.vim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index 2836e81c4a..3916d7c554 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -263,7 +263,7 @@ func Test_set_completion() call feedkeys(":setglobal di\<C-A>\<C-B>\"\<CR>", 'tx') call assert_equal('"setglobal dictionary diff diffexpr diffopt digraph directory display', @:) - " Expand boolan options. When doing :set no<Tab> + " Expand boolean options. When doing :set no<Tab> " vim displays the options names without "no" but completion uses "no...". call feedkeys(":set nodi\<C-A>\<C-B>\"\<CR>", 'tx') call assert_equal('"set nodiff digraph', @:) diff --git a/src/nvim/testdir/test_vimscript.vim b/src/nvim/testdir/test_vimscript.vim index f20fd12ed3..bd60dcb707 100644 --- a/src/nvim/testdir/test_vimscript.vim +++ b/src/nvim/testdir/test_vimscript.vim @@ -1443,7 +1443,7 @@ endfunc " Undefined behavior was detected by ubsan with line continuation " after an empty line. "------------------------------------------------------------------------------- -func Test_script_emty_line_continuation() +func Test_script_empty_line_continuation() \ endfunc diff --git a/src/nvim/testdir/test_window_cmd.vim b/src/nvim/testdir/test_window_cmd.vim index f38eaaf318..909db3a1bb 100644 --- a/src/nvim/testdir/test_window_cmd.vim +++ b/src/nvim/testdir/test_window_cmd.vim @@ -1214,7 +1214,7 @@ endfunc " Test for jumping to a vertical/horizontal neighbor window based on the " current cursor position -func Test_window_goto_neightbor() +func Test_window_goto_neighbor() %bw! " Vertical window movement |