Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en-us/luau/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ local function deepFreeze(target)
for _, value in target do
-- Make sure the value isn't frozen; if it already is, an error will occur
if type(value) == "table" and table.isfrozen(value) == false then
deepFreeze(v)
deepFreeze(value)
end
end
end
Expand Down