docs: update sandbox snippet in article

This commit is contained in:
Erica Marigold 2024-05-16 11:17:32 +05:30
parent eede130035
commit 37d8223b95
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -108,6 +108,7 @@ end
local function constructProtectedMt<T>(library: T)
return {
__index = library,
__metatable = "Locked",
__tostring = function()
return stdio.format(library)
end,