diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-04-30 01:04:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-30 07:04:42 +0800 |
commit | 234b5f67019b435b604308a96c366b1187c2cc3a (patch) | |
tree | f22fa4e2fc0318ec5940f31746f04db3361f8a4e /test | |
parent | b7e5769132e865122fe4bf8588be9ca1820db802 (diff) | |
download | rneovim-234b5f67019b435b604308a96c366b1187c2cc3a.tar.gz rneovim-234b5f67019b435b604308a96c366b1187c2cc3a.tar.bz2 rneovim-234b5f67019b435b604308a96c366b1187c2cc3a.zip |
docs: various fixes (#28208)
Co-authored-by: Evgeni Chasnovski <evgeni.chasnovski@gmail.com>
Co-authored-by: Famiu Haque <famiuhaque@proton.me>
Co-authored-by: Gregory Anders <greg@gpanders.com>
Co-authored-by: Guilherme Soares <guilhermesoares1970@gmail.com>
Co-authored-by: Jannik Buhr <jannik.m.buhr@gmail.com>
Co-authored-by: thomaswuhoileong <72001875+thomaswuhoileong@users.noreply.github.com>
Co-authored-by: tom-anders <13141438+tom-anders@users.noreply.github.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 9fc2f590a1..564be4ebe2 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -1682,14 +1682,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) |