fix: util.cc concat with \n

This commit is contained in:
2025-12-14 20:29:45 -05:00
parent 1427d0d780
commit f37c3e0e53

View File

@@ -4,7 +4,7 @@ local symbol = require("core.symbol")
local M = {}
function M.cc(tbl)
return table.concat(tbl)
return table.concat(tbl, "\n")
end
function M.copyright(link, holder)