diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-02-04 14:58:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 14:58:38 +0000 |
commit | 9a5678463c96baf3b39cb3083ddf0da87d39aa23 (patch) | |
tree | b0a8babd95fb7665ab107271467d6d5de12e511b /runtime/doc/lua.txt | |
parent | 69bb145cea56067e6e82ed0a130a51c0d611e540 (diff) | |
download | rneovim-9a5678463c96baf3b39cb3083ddf0da87d39aa23.tar.gz rneovim-9a5678463c96baf3b39cb3083ddf0da87d39aa23.tar.bz2 rneovim-9a5678463c96baf3b39cb3083ddf0da87d39aa23.zip |
fix(treesitter): fix most diagnostics
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 47249a484b..0472c11a15 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1362,7 +1362,8 @@ defer_fn({fn}, {timeout}) *vim.defer_fn()* Parameters: ~ • {fn} (function) Callback to call once `timeout` expires - • {timeout} integer Number of milliseconds to wait before calling `fn` + • {timeout} (integer) Number of milliseconds to wait before calling + `fn` Return: ~ (table) timer luv timer object |