diff --git a/docs/metatable-type-functions.md b/docs/metatable-type-functions.md index d688fbc..7864a78 100644 --- a/docs/metatable-type-functions.md +++ b/docs/metatable-type-functions.md @@ -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