Skip to content

Commit c3829d6

Browse files
committed
Fixes #395
1 parent 7f237db commit c3829d6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [2.8.3] - 2026-XX-XX
4+
- Fix issue [#395](https://github.com/intersystems/language-server/issues/395): Hover info for method that takes no argument has extraneous * character
5+
36
## [2.8.2] - 2026-01-21
47
- Fix issue [#392](https://github.com/intersystems/language-server/issues/392): Restore support for a wide array of Linux distros
58

server/src/utils/functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2261,7 +2261,7 @@ export function beautifyFormalSpec(FormalSpec: string, markdown = false): string
22612261
result += c;
22622262
}
22632263
}
2264-
if (markdown && inParam) result += "*";
2264+
if (markdown && inParam && result.length) result += "*";
22652265
if (markdown && inCls) result += "**";
22662266
return `(${result})`;
22672267
}

0 commit comments

Comments
 (0)