summaryrefslogtreecommitdiff
path: root/script/meta/bee/thread.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2024-06-05 18:04:48 +0800
committer最萌小汐 <sumneko@hotmail.com>2024-06-05 18:04:48 +0800
commit39b078942014a3e022ef5fcb953e9e58b8c5dbec (patch)
treed965edceb509ce642d1ba11848a49cd486b12fbb /script/meta/bee/thread.lua
parent74134c9d90f708bb99e7ee80df459738286fa2f3 (diff)
downloadlua-language-server-39b078942014a3e022ef5fcb953e9e58b8c5dbec.zip
修复thread的meta文件
Diffstat (limited to 'script/meta/bee/thread.lua')
-rw-r--r--script/meta/bee/thread.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/script/meta/bee/thread.lua b/script/meta/bee/thread.lua
index 1691d49a..a29ce971 100644
--- a/script/meta/bee/thread.lua
+++ b/script/meta/bee/thread.lua
@@ -1,9 +1,9 @@
----@meta
+---@meta bee.thread
---@class bee.thread
local thread = {}
----@param time integer
+---@param time number
function thread.sleep(time) end
---@param name string
@@ -15,7 +15,7 @@ function thread.channel(name) end
---@param script string
---@return bee.thread.thread
-function thread.create(script) end
+function thread.thread(script) end
---@return string?
function thread.errlog() end