Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #14655

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions READMEdir/README_vimlogo.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
The Python project that creates `vimlogo.svg` can be found at
`https://github.com/ShayHill/vimlogo`. The Vim license applies.

`vimlogo.svg` is an effort to remove errors and inadvertant inconsistencies
from the original vim logo while maintaing the original design. `vimlogo.svg`
`vimlogo.svg` is an effort to remove errors and inadvertent inconsistencies
from the original vim logo while maintaining the original design. `vimlogo.svg`
is based on the `vimlogo.svg` file (previously?) found at
`https://www.vim.org/logos.php`

Expand Down
4 changes: 2 additions & 2 deletions src/testdir/test_filetype.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1684,14 +1684,14 @@ func Test_mod_file()
call assert_equal('pim', b:modula2.dialect)
bwipe!

" Modula-2 program MODULE with priorty (and uppercase extension)
" Modula-2 program MODULE with priority (and uppercase extension)
call writefile(['MODULE Module2Mod [42];'], 'Xfile.MOD')
split Xfile.MOD
call assert_equal('modula2', &filetype)
call assert_equal('pim', b:modula2.dialect)
bwipe!

" Modula-2 implementation MODULE with priorty (and uppercase extension)
" Modula-2 implementation MODULE with priority (and uppercase extension)
call writefile(['IMPLEMENTATION MODULE Module2Mod [42];'], 'Xfile.MOD')
split Xfile.MOD
call assert_equal('modula2', &filetype)
Expand Down
2 changes: 1 addition & 1 deletion src/testdir/test_remote.vim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ source term_util.vim
let s:remote_works = 0
let s:skip = 'Skipped: --remote feature is not possible'

" nees to be run as first test to verify, that vim --servername works
" needs to be run as first test to verify, that vim --servername works
func Verify_remote_feature_works()
CheckRunVimInTerminal
enew
Expand Down
2 changes: 1 addition & 1 deletion src/testdir/test_textformat.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ func Test_correct_cursor_position()
endfunc

" This was crashing Vim
func Test_textwdith_overflow()
func Test_textwidth_overflow()
new
setl tw=999999999
normal 10ig
Expand Down