From 0d82ac4266f28ec91ab47ae488244571de602789 Mon Sep 17 00:00:00 2001 From: ffrostfall <80861876+ffrostfall@users.noreply.github.com> Date: Tue, 4 Feb 2025 00:23:59 -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 e09a659..4ca4e1d 100644 --- a/docs/metatable-type-functions.md +++ b/docs/metatable-type-functions.md @@ -45,7 +45,7 @@ type Identity = setmetatable<{ In the following code example, `ReversedIdentity` should evaluate to `{ __index: animal }`: -```lua +```luau local animal = {} type Identity = setmetatable<{ sound: string