diff options
| author | Maria José Solano <majosolano99@gmail.com> | 2023-08-27 01:41:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-27 09:41:32 +0100 |
| commit | b7d5b55f74fd589dee27d8356d45b31c552705c3 (patch) | |
| tree | 0004732223666a7a8659d832b9e3b3bbcb09a046 /runtime/doc | |
| parent | 2bf3e82676d5caf674cf5ed1eb9677376d9cfa35 (diff) | |
| download | rneovim-b7d5b55f74fd589dee27d8356d45b31c552705c3.tar.gz rneovim-b7d5b55f74fd589dee27d8356d45b31c552705c3.tar.bz2 rneovim-b7d5b55f74fd589dee27d8356d45b31c552705c3.zip | |
fix(types): add some return/parameter type annotations (#24867)
* fix(types): add some return/parameter type annotations
* fix(types): narrow stdpath parameter further
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lua.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 39eb530c24..f5b3e56f61 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1567,6 +1567,9 @@ vim.deprecate({name}, {alternative}, {version}, {plugin}, {backtrace}) vim.inspect *vim.inspect()* Gets a human-readable representation of the given object. + Return: ~ + (string) + See also: ~ • |vim.print()| • https://github.com/kikito/inspect.lua |