diff options
author | Maria José Solano <majosolano99@gmail.com> | 2024-12-08 19:18:40 -0800 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-12-09 07:59:51 +0000 |
commit | 3bb2d027597107a3d7f84ef61507104fd4dc050a (patch) | |
tree | ea3c8cbf7981f56e84bc06ccf3a899d93ece2492 /runtime/lua/vim/shared.lua | |
parent | 30726c778cfca7825654848acf5516158a7beb3d (diff) | |
download | rneovim-3bb2d027597107a3d7f84ef61507104fd4dc050a.tar.gz rneovim-3bb2d027597107a3d7f84ef61507104fd4dc050a.tar.bz2 rneovim-3bb2d027597107a3d7f84ef61507104fd4dc050a.zip |
docs: fix type of vim.validate value
Diffstat (limited to 'runtime/lua/vim/shared.lua')
-rw-r--r-- | runtime/lua/vim/shared.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua index 9314d34314..0fe8e99350 100644 --- a/runtime/lua/vim/shared.lua +++ b/runtime/lua/vim/shared.lua @@ -1013,7 +1013,7 @@ do --- best performance. --- --- @param name string Argument name - --- @param value string Argument value + --- @param value any Argument value --- @param validator vim.validate.Validator --- - (`string|string[]`): Any value that can be returned from |lua-type()| in addition to --- `'callable'`: `'boolean'`, `'callable'`, `'function'`, `'nil'`, `'number'`, `'string'`, `'table'`, |