diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-12-21 19:52:16 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-12-21 19:52:16 +0800 |
commit | 07219cbb20a46fbad86c4145710ebd976b54e138 (patch) | |
tree | d695f137f66c99b903f01edd3e46533242c3015c /meta/template | |
parent | 364371362ffce9a90d09bd6f60c3a6a20d006fc7 (diff) | |
download | lua-language-server-07219cbb20a46fbad86c4145710ebd976b54e138.zip |
#871 fix return type of `math.floor`
Diffstat (limited to 'meta/template')
-rw-r--r-- | meta/template/math.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/template/math.lua b/meta/template/math.lua index f987eb0b..d9837424 100644 --- a/meta/template/math.lua +++ b/meta/template/math.lua @@ -87,7 +87,7 @@ function math.exp(x) end ---#DES 'math.floor' ---@param x number ----@return number +---@return integer ---@nodiscard function math.floor(x) end |