summaryrefslogtreecommitdiff
path: root/meta/template
diff options
context:
space:
mode:
Diffstat (limited to 'meta/template')
-rw-r--r--meta/template/basic.lua8
-rw-r--r--meta/template/coroutine.lua6
-rw-r--r--meta/template/debug.lua18
-rw-r--r--meta/template/string.lua2
4 files changed, 17 insertions, 17 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
diff --git a/meta/template/coroutine.lua b/meta/template/coroutine.lua
index 390be21b..0b07bf5c 100644
--- a/meta/template/coroutine.lua
+++ b/meta/template/coroutine.lua
@@ -5,7 +5,7 @@
coroutine = {}
---#DES 'coroutine.create'
----@param f async fun(...):...
+---@param f async fun()
---@return thread
---@nodiscard
function coroutine.create(f) end
@@ -55,8 +55,8 @@ function coroutine.running() end
function coroutine.status(co) end
---#DES 'coroutine.wrap'
----@param f async fun(...):...
----@return fun(...):...
+---@param f async fun()
+---@return fun()
---@nodiscard
function coroutine.wrap(f) end
diff --git a/meta/template/debug.lua b/meta/template/debug.lua
index bb31ee1a..c8b506f5 100644
--- a/meta/template/debug.lua
+++ b/meta/template/debug.lua
@@ -63,7 +63,7 @@ function debug.gethook(co) end
---#DES 'debug.getinfo'
---@overload fun(f: integer|function, what?: infowhat):debuginfo
---@param thread thread
----@param f integer|async fun(...):...
+---@param f integer|async fun()
---@param what? infowhat
---@return debuginfo
---@nodiscard
@@ -81,9 +81,9 @@ function debug.getinfo(thread, f, what) end
function debug.getlocal(thread, level, index) end
---#else
---#DES 'debug.getlocal>5.2'
----@overload fun(f: integer|async fun(...), index: integer):string, any
+---@overload fun(f: integer|async fun(), index: integer):string, any
---@param thread thread
----@param f integer|async fun(...):...
+---@param f integer|async fun()
---@param index integer
---@return string name
---@return any value
@@ -103,7 +103,7 @@ function debug.getmetatable(object) end
function debug.getregistry() end
---#DES 'debug.getupvalue'
----@param f async fun(...):...
+---@param f async fun()
---@param up integer
---@return string name
---@return any value
@@ -148,7 +148,7 @@ function debug.setfenv(object, env) end
---#DES 'debug.sethook'
---@overload fun(hook: function, mask: hookmask, count?: integer)
---@param thread thread
----@param hook async fun(...):...
+---@param hook async fun()
---@param mask hookmask
---@param count? integer
function debug.sethook(thread, hook, mask, count) end
@@ -170,7 +170,7 @@ function debug.setlocal(thread, level, index, value) end
function debug.setmetatable(value, meta) end
---#DES 'debug.setupvalue'
----@param f async fun(...):...
+---@param f async fun()
---@param up integer
---@param value any
---@return string name
@@ -202,7 +202,7 @@ function debug.traceback(thread, message, level) end
---@version >5.2, JIT
---#DES 'debug.upvalueid'
----@param f async fun(...):...
+---@param f async fun()
---@param n integer
---@return lightuserdata id
---@nodiscard
@@ -210,9 +210,9 @@ function debug.upvalueid(f, n) end
---@version >5.2, JIT
---#DES 'debug.upvaluejoin'
----@param f1 async fun(...):...
+---@param f1 async fun()
---@param n1 integer
----@param f2 async fun(...):...
+---@param f2 async fun()
---@param n2 integer
function debug.upvaluejoin(f1, n1, f2, n2) end
diff --git a/meta/template/string.lua b/meta/template/string.lua
index 0673afa8..e61c3688 100644
--- a/meta/template/string.lua
+++ b/meta/template/string.lua
@@ -22,7 +22,7 @@ function string.byte(s, i, j) end
function string.char(byte, ...) end
---#DES 'string.dump'
----@param f async fun(...):...
+---@param f async fun()
---@param strip? boolean
---@return string
---@nodiscard