Turn lua into luau

Co-authored-by: ariel <aweiss@hey.com>
This commit is contained in:
ffrostfall 2025-02-04 00:24:12 -05:00 committed by GitHub
parent 0d82ac4266
commit 74c149b534
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -58,7 +58,7 @@ type ReversedIdentity = getmetatable<Identity>
Due to `__metamethod`, additional behavior needs to be met. In the following code example, `MetatableType` should evaluate to `"No metatable here!"`: Due to `__metamethod`, additional behavior needs to be met. In the following code example, `MetatableType` should evaluate to `"No metatable here!"`:
```lua ```luau
type metatable = { type metatable = {
__metatable: "No metatable here!" __metatable: "No metatable here!"
} }