Turn lua into luau

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

View file

@ -17,7 +17,7 @@ type Identity = typeof(setmetatable({} :: { time: number }, { __index = clock })
could be reduced to:
```lua
```luau
local clock = {}
type Identity = setmetatable<{ time: number }, { __index: clock }>
```