From c474b41b4c92c97be3b99321e7eee12879f74f44 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Mon, 2 May 2022 16:42:29 -0700 Subject: [PATCH] Update docs/_posts/2022-05-02-luau-recap-april-2022.md --- 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 2b982ce2..f5a14e3e 100644 --- a/docs/_posts/2022-05-02-luau-recap-april-2022.md +++ b/docs/_posts/2022-05-02-luau-recap-april-2022.md @@ -41,7 +41,7 @@ local a: A = { 1, 2, 3 } local b: B = a ``` -If the following code were to error because `Hello` was undefined, we would erraneously include the comment in the span of the error. This is now fixed. +If the following code were to error because `Hello` was undefined, we would erroneously include the comment in the span of the error. This is now fixed. ```lua type Foo = Hello -- some comment over here ```