aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/buffer_updates_spec.lua
diff options
context:
space:
mode:
authorHye Sung Jung <hjung524@gmail.com>2020-01-31 00:56:34 -0600
committerGitHub <noreply@github.com>2020-01-30 22:56:34 -0800
commit14a8b3b98c245087ef431070195f3a2fa3db16c0 (patch)
tree38f034daf588c26e469feda22dcc09abede8806b /test/functional/lua/buffer_updates_spec.lua
parent486fa218994e0e631ee21a48b70bcfc828d7e6d2 (diff)
downloadrneovim-14a8b3b98c245087ef431070195f3a2fa3db16c0.tar.gz
rneovim-14a8b3b98c245087ef431070195f3a2fa3db16c0.tar.bz2
rneovim-14a8b3b98c245087ef431070195f3a2fa3db16c0.zip
doc: fix typos [ci skip] #11787
Diffstat (limited to 'test/functional/lua/buffer_updates_spec.lua')
-rw-r--r--test/functional/lua/buffer_updates_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/buffer_updates_spec.lua b/test/functional/lua/buffer_updates_spec.lua
index 7d3ecbf912..77f8189bb9 100644
--- a/test/functional/lua/buffer_updates_spec.lua
+++ b/test/functional/lua/buffer_updates_spec.lua
@@ -98,7 +98,7 @@ describe('lua: buffer event callbacks', function()
command('undo')
-- plugins can opt in to receive changedtick events, or choose
- -- to only recieve actual changes.
+ -- to only receive actual changes.
check_events({{ "test1", "lines", 1, tick, 3, 4, 5, 13 },
{ "test2", "lines", 1, tick, 3, 4, 5, 13 },
{ "test2", "changedtick", 1, tick+1 } })
@@ -111,7 +111,7 @@ describe('lua: buffer event callbacks', function()
tick = tick + 1
-- plugins can opt in to receive changedtick events, or choose
- -- to only recieve actual changes.
+ -- to only receive actual changes.
check_events({{ "test1", "lines", 1, tick, 6, 7, 9, 16 },
{ "test2", "lines", 1, tick, 6, 7, 9, 16 }})