From 5c2811361a2b2b146561b70e1311f5245fb89b65 Mon Sep 17 00:00:00 2001 From: Alexander McCord <11488393+alexmccord@users.noreply.github.com> Date: Tue, 30 Aug 2022 05:55:37 -0700 Subject: [PATCH] Fix inconsistent indentation. --- docs/_posts/2022-08-29-luau-recap-august-2022.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2022-08-29-luau-recap-august-2022.md b/docs/_posts/2022-08-29-luau-recap-august-2022.md index e509a3ea..5c7036e7 100644 --- a/docs/_posts/2022-08-29-luau-recap-august-2022.md +++ b/docs/_posts/2022-08-29-luau-recap-august-2022.md @@ -61,7 +61,7 @@ To be able to do this soundly, you must apply type refinements on a variable of local u = unknown() if typeof(u) == "string" then - local y: string = u -- no type error + local y: string = u -- no type error end ```