diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-08 20:20:35 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-08 20:20:35 +0800 |
commit | 3c265f1bd4409c5713e88127e8fdca23870ea3c1 (patch) | |
tree | 7b3aa702c2a322f827aba9be9e64ba142059dc59 /meta/template/math.lua | |
parent | 9585ac191f61d72dd198edec139b955276a53072 (diff) | |
download | lua-language-server-3c265f1bd4409c5713e88127e8fdca23870ea3c1.zip |
change to `@param ...`
Diffstat (limited to 'meta/template/math.lua')
-rw-r--r-- | meta/template/math.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/template/math.lua b/meta/template/math.lua index 67c76ff4..09c75cc6 100644 --- a/meta/template/math.lua +++ b/meta/template/math.lua @@ -138,14 +138,14 @@ function math.log10(x) end ---#DES 'math.max' ---@param x number ----@vararg number +---@param ... number ---@return number ---@nodiscard function math.max(x, ...) end ---#DES 'math.min' ---@param x number ----@vararg number +---@param ... number ---@return number ---@nodiscard function math.min(x, ...) end |