summaryrefslogtreecommitdiff
path: root/changelog.md
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-06-22 01:41:16 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-06-22 01:41:16 +0800
commit7b3e7f4b0a62b7c9c3b895e89b4fe79bb8f350ba (patch)
treeee441dc6545127e650c6fcf435c96d33079ac177 /changelog.md
parentd1e977ca8a6d72673649282bcd1973b1d279a8a1 (diff)
downloadlua-language-server-7b3e7f4b0a62b7c9c3b895e89b4fe79bb8f350ba.zip
fix
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md4
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