From 47a8d28aa92379a724a0a9646d176c8375a7f111 Mon Sep 17 00:00:00 2001 From: Alexander McCord <11488393+alexmccord@users.noreply.github.com> Date: Tue, 3 May 2022 16:12:59 -0700 Subject: [PATCH] Fix a typo in recap. (#472) --- docs/_posts/2022-05-02-luau-recap-april-2022.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2022-05-02-luau-recap-april-2022.md b/docs/_posts/2022-05-02-luau-recap-april-2022.md index f5a14e3e..dd6b2c0c 100644 --- a/docs/_posts/2022-05-02-luau-recap-april-2022.md +++ b/docs/_posts/2022-05-02-luau-recap-april-2022.md @@ -14,7 +14,7 @@ It is now allowed to define functions on sealed tables that have string indexers ```lua local a : {[string]: () -> number} = {} -function b.y() return 4 end -- OK +function a.y() return 4 end -- OK ``` Autocomplete will now provide string literal suggestions for singleton types. eg