diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-12-11 16:18:34 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-12-11 16:18:34 +0800 |
commit | b8c5d1208f9f276bd168c9a17a2b17105af09107 (patch) | |
tree | b634f7ccb8f3ff2f68b60d7b2a81073018a6af8a /meta/template/coroutine.lua | |
parent | e794ff1c24a6171b9817ee063d48745174814092 (diff) | |
download | lua-language-server-b8c5d1208f9f276bd168c9a17a2b17105af09107.zip |
fix document of coroutine.wrap
Diffstat (limited to 'meta/template/coroutine.lua')
-rw-r--r-- | meta/template/coroutine.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/template/coroutine.lua b/meta/template/coroutine.lua index e1f187df..82ce1269 100644 --- a/meta/template/coroutine.lua +++ b/meta/template/coroutine.lua @@ -51,7 +51,7 @@ function coroutine.status(co) end ---#DES 'coroutine.wrap' ---@param f function ----@return ... +---@return fun(...):... function coroutine.wrap(f) end ---#DES 'coroutine.yield' |