From f37c3e0e5329554ed039738ed874d2b99bc1c403 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Sun, 14 Dec 2025 20:29:45 -0500 Subject: [PATCH] fix: util.cc concat with \n --- core/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.lua b/core/util.lua index 39c6a97..88de015 100644 --- a/core/util.lua +++ b/core/util.lua @@ -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)