Rename table.concat to table.concatTables to resolve conflict
This commit is contained in:
parent
bcd8c95388
commit
be0781340a
3 changed files with 7 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue