Rename table.concat to table.concatTables to resolve conflict

This commit is contained in:
Simon Brodtmann 2025-02-28 23:16:17 +01:00
parent bcd8c95388
commit be0781340a
3 changed files with 7 additions and 2 deletions

View file

@ -74,7 +74,7 @@ end
--- @param table1 table The first table
--- @param table2 table The second table
--- @return table The concatenated table
function table.concat(table1, table2)
function table.concatTables(table1, table2)
local result = {}
for _, v in pairs(table1) do
table.insert(result, v)