From 85f281f27e37b14cea572d36ae206994a1342130 Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostfall@users.noreply.github.com> Date: Tue, 4 Feb 2025 00:24:26 -0500 Subject: [PATCH] Turn lua into luau Co-authored-by: ariel --- docs/metatable-type-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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