diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-11-30 09:28:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 09:28:50 +0100 |
commit | f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5 (patch) | |
tree | 5800b5c5c129fa2aacc5be1a74659b1631a4559e /runtime/lua/vim/shared.lua | |
parent | fff8827908494a9c4bd5de10c409189929b3db56 (diff) | |
parent | d0fbbea62ae35928efcabb224932bb990d7cab29 (diff) | |
download | rneovim-f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5.tar.gz rneovim-f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5.tar.bz2 rneovim-f5fb79733e30b6444e9637e9a1aa4bfcb2050ab5.zip |
Merge pull request #16460 from dundargoc/chore/typos
chore: fix typos
Diffstat (limited to 'runtime/lua/vim/shared.lua')
-rw-r--r-- | runtime/lua/vim/shared.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua index bf77f0c776..1cf618725d 100644 --- a/runtime/lua/vim/shared.lua +++ b/runtime/lua/vim/shared.lua @@ -559,6 +559,7 @@ do return type(val) == t or (t == 'callable' and vim.is_callable(val)) end + ---@private local function is_valid(opt) if type(opt) ~= 'table' then return false, string.format('opt: expected table, got %s', type(opt)) |