diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-06-22 01:41:16 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-06-22 01:41:16 +0800 |
commit | 7b3e7f4b0a62b7c9c3b895e89b4fe79bb8f350ba (patch) | |
tree | ee441dc6545127e650c6fcf435c96d33079ac177 /changelog.md | |
parent | d1e977ca8a6d72673649282bcd1973b1d279a8a1 (diff) | |
download | lua-language-server-7b3e7f4b0a62b7c9c3b895e89b4fe79bb8f350ba.zip |
fix
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md index 48793c71..f0a43feb 100644 --- a/changelog.md +++ b/changelog.md @@ -8,8 +8,8 @@ ``` * `CHG` infer called function by params num ```lua - ---@overload fun(x, y):string - ---@overload fun(x):number + ---@overload fun(x: number, y: number):string + ---@overload fun(x: number):number ---@return boolean local function f() end |