diff options
Diffstat (limited to 'meta/template/basic.lua')
-rw-r--r-- | meta/template/basic.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/template/basic.lua b/meta/template/basic.lua index c3916eba..b26d3959 100644 --- a/meta/template/basic.lua +++ b/meta/template/basic.lua @@ -55,7 +55,7 @@ _G = {} ---@version 5.1 ---#DES 'getfenv' ----@param f? async fun(...):... +---@param f? async fun() ---@return table ---@nodiscard function getfenv(f) end @@ -151,7 +151,7 @@ function pairs(t) end ---#if VERSION == 5.1 and not JIT then ---@param f function ---#else ----@param f async fun(...):... +---@param f async fun() ---#end ---@param arg1? any ---@return boolean success @@ -197,7 +197,7 @@ function select(index, ...) end ---@version 5.1 ---#DES 'setfenv' ----@param f async fun(...):...|integer +---@param f async fun()|integer ---@param table table ---@return function function setfenv(f, table) end @@ -263,7 +263,7 @@ function warn(message, ...) end function xpcall(f, err) end ---#else ---#DES 'xpcall>5.2' ----@param f async fun(...):... +---@param f async fun() ---@param msgh function ---@param arg1? any ---@return boolean success |