Skip to content

Commit

Permalink
Fix unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
AstroSnail committed Jan 5, 2025
1 parent d742975 commit 7f42fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-env.lua
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ local function unwrap_into_string(...)
for i, v in ipairs(args) do
args[i] = v.str
end
return unpack(args)
return table.unpack(args)
end

---@param env Environment
Expand Down

0 comments on commit 7f42fc5

Please sign in to comment.