diff options
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md index 20b73e9f..da028dec 100644 --- a/changelog.md +++ b/changelog.md @@ -30,8 +30,11 @@ ``` * `CHG` semicolons and parentheses can be used in `DocTable` ```lua - ---@type { x: fun():boolean; y: boolean } - ---@type { (x: fun():boolean), y: boolean } + ---@type { (x: number); (y: boolean) } + ``` +* `CHG` return names and parentheses can be used in `DocFunction` + ```lua + ---@type fun():(x: number, y: number, ...: number) ``` * `CHG` supports `---@return boolean ...` * `CHG` improve experience for diagnostics and semantic-tokens |