Updated bindings. (#3611)

This commit is contained in:
Branimir Karadžić
2026-02-28 00:10:19 -08:00
committed by GitHub
parent 7600e5e0eb
commit 874a013bf0
8 changed files with 8 additions and 26 deletions

View File

@@ -881,7 +881,7 @@ local function text_with_comments(items, item, cstyle, is_classmember, name_alig
else
if cstyle then
text = string.format("%s %s/** %s%s */",
text, namealign(text, comment_align), item.comment[1], namealign(item.comment[1], 40))
text, namealign(text, 40), item.comment[1], namealign(item.comment[1], 40))
else
local comment_col = math.max(#text + 1, comment_align)
local padding = string.rep(" ", comment_col - #text)