diff options
author | notomo <notomo.motono@gmail.com> | 2023-01-04 20:48:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 11:48:41 +0000 |
commit | e35b9020b16985eee26e942f9a3f6b045bc3809b (patch) | |
tree | 0a685e4fccb55380017e059243db0570a83954cb /runtime/doc/lua.txt | |
parent | ef18c9f9b05caf1f39ed32762f53802e378f143b (diff) | |
download | rneovim-e35b9020b16985eee26e942f9a3f6b045bc3809b.tar.gz rneovim-e35b9020b16985eee26e942f9a3f6b045bc3809b.tar.bz2 rneovim-e35b9020b16985eee26e942f9a3f6b045bc3809b.zip |
docs(lua): adjust some type annotations
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 074cb863f0..9cb189b927 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1678,8 +1678,8 @@ list_slice({list}, {start}, {finish}) *vim.list_slice()* Parameters: ~ • {list} (list) Table - • {start} (number) Start range of slice - • {finish} (number) End range of slice + • {start} (number|nil) Start range of slice + • {finish} (number|nil) End range of slice Return: ~ (list) Copy of table sliced from start to finish (inclusive) |