1 Commits
main ... doc

Author SHA1 Message Date
f37c3e0e53 fix: util.cc concat with \n 2025-12-14 20:29:45 -05:00

View File

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