diff options
author | Brian Wignall <brianwignall@gmail.com> | 2019-11-26 07:15:14 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-27 22:47:25 -0800 |
commit | 001e69cd4602e84219fd7cfd8ade62f0cb24097c (patch) | |
tree | df635c6a687421d2126b004daec74f1fd2c1f55b /test/functional/api/mark_extended_spec.lua | |
parent | 86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538 (diff) | |
download | rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.tar.gz rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.tar.bz2 rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.zip |
doc: fix typos
close #11459
Diffstat (limited to 'test/functional/api/mark_extended_spec.lua')
-rw-r--r-- | test/functional/api/mark_extended_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/api/mark_extended_spec.lua b/test/functional/api/mark_extended_spec.lua index edb0f8ac2b..bf910568b1 100644 --- a/test/functional/api/mark_extended_spec.lua +++ b/test/functional/api/mark_extended_spec.lua @@ -507,7 +507,7 @@ describe('API/extmarks', function() feed('0l3dl<esc>') check_undo_redo(ns, marks[1], 0, 2, 0, 1) check_undo_redo(ns, marks[2], 0, 3, 0, 1) - -- delete 1, nothing should happend to our marks + -- delete 1, nothing should happen to our marks feed('u') feed('$x') check_undo_redo(ns, marks[2], 0, 3, 0, 3) @@ -543,7 +543,7 @@ describe('API/extmarks', function() check_undo_redo(ns, marks[1], 0, 1, 0, 0) check_undo_redo(ns, marks[2], 0, 3, 0, 0) check_undo_redo(ns, marks[3], 1, 2, 1, 0) - -- delete 1, nothing should happend to our marks + -- delete 1, nothing should happen to our marks feed('u') feed('$<c-v>jx') check_undo_redo(ns, marks[2], 0, 3, 0, 3) |