Turn lua into luau

Co-authored-by: ariel <aweiss@hey.com>
This commit is contained in:
ffrostfall 2025-02-04 00:24:26 -05:00 committed by GitHub
parent 05e396d4b9
commit 85f281f27e
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ type Identity = setmetatable<{ time: number }, { __index: clock }>
In the following code example, `Identity` should evaluate to `{ sound: string, @metatable: { __index: animal } }`:
```lua
```luau
local animal = {}
type Identity = setmetatable<{
sound: string