diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-03-10 07:34:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 14:34:55 +0800 |
commit | a7b1c8893c602196541e94b8b24c4c70c32c25b0 (patch) | |
tree | c763c8446efbefe113a0c1837e8b6b9b762e260d /runtime/doc/lua.txt | |
parent | 487f52c9d2580b9a10010071f9263d19bc069bd1 (diff) | |
download | rneovim-a7b1c8893c602196541e94b8b24c4c70c32c25b0.tar.gz rneovim-a7b1c8893c602196541e94b8b24c4c70c32c25b0.tar.bz2 rneovim-a7b1c8893c602196541e94b8b24c4c70c32c25b0.zip |
chore: fix typos (#17331)
Co-authored-by: Hongyi Lyu <hongyi.lyu95@gmail.com>
Co-authored-by: Gregory Anders <greg@gpanders.com>
Co-authored-by: notomo <notomo.motono@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 98af84e1cb..11629332ae 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1083,7 +1083,7 @@ from within Lua. `vim.opt.wildignore = '*.o,*.a,__pycache__'` However, vim.opt also supports a more elegent way of setting - list-style options, but using lua tables: + list-style options by using lua tables: `vim.opt.wildignore = { '*.o', '*.a', '__pycache__' }` To replicate the behavior of |:set+=|, use: > |