diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-09-30 09:53:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 09:53:52 +0200 |
commit | df646572c53f55268a5dbb61628d7c3b302d5663 (patch) | |
tree | 2b4dc98b294e8faae446c21181d48c47a22b54aa /test/functional/vimscript/container_functions_spec.lua | |
parent | 9cf252e12153aa8bf657631a8ed2b83888948fb0 (diff) | |
download | rneovim-df646572c53f55268a5dbb61628d7c3b302d5663.tar.gz rneovim-df646572c53f55268a5dbb61628d7c3b302d5663.tar.bz2 rneovim-df646572c53f55268a5dbb61628d7c3b302d5663.zip |
docs: fix typos (#20394)
Co-authored-by: Raphael <glephunter@gmail.com>
Co-authored-by: smjonas <jonas.strittmatter@gmx.de>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'test/functional/vimscript/container_functions_spec.lua')
-rw-r--r-- | test/functional/vimscript/container_functions_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/vimscript/container_functions_spec.lua b/test/functional/vimscript/container_functions_spec.lua index 04a3248c49..5bef3fce05 100644 --- a/test/functional/vimscript/container_functions_spec.lua +++ b/test/functional/vimscript/container_functions_spec.lua @@ -8,7 +8,7 @@ local clear = helpers.clear before_each(clear) describe('extend()', function() - it('suceeds to extend list with itself', function() + it('succeeds to extend list with itself', function() meths.set_var('l', {1, {}}) eq({1, {}, 1, {}}, eval('extend(l, l)')) eq({1, {}, 1, {}}, meths.get_var('l')) |