From 7615e25ed03e1cb2151dcf75edd80da7d7b4c0f4 Mon Sep 17 00:00:00 2001 From: James <85808999+TheGreatSageEqualToHeaven@users.noreply.github.com> Date: Thu, 8 Feb 2024 06:01:06 +0000 Subject: [PATCH] Update syntax-if-statements-initializers.md --- docs/syntax-if-statements-initializers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax-if-statements-initializers.md b/docs/syntax-if-statements-initializers.md index 9df46a8..cfaecc7 100644 --- a/docs/syntax-if-statements-initializers.md +++ b/docs/syntax-if-statements-initializers.md @@ -84,7 +84,7 @@ if local a, b = foo() in b > a then end ``` -While Luau is a verbose language that uses keywords for the majority of its syntax, another approach is using semicolons as a separator. This can work well because statements can use semicolons as a separator, which will retain consistency with the language. +While Luau is a verbose language that uses keywords for the majority of its syntax, another approach is using semicolons as a separator. This can work well because statements can use semicolons as a separator, which will retain consistency with the language. The same can be said for the comma, which would be consistent with for loop syntax. ```lua if local a, b = foo(); b > a then