From 548d4c8ba9a0268ad17e4e29e401ccea7b1ee34d Mon Sep 17 00:00:00 2001 From: James <85808999+TheGreatSageEqualToHeaven@users.noreply.github.com> Date: Sat, 13 Apr 2024 18:42:37 +0100 Subject: [PATCH] Update docs/syntax-if-statements-initializers.md Co-authored-by: Alexander McCord <11488393+alexmccord@users.noreply.github.com> --- docs/syntax-if-statements-initializers.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/syntax-if-statements-initializers.md b/docs/syntax-if-statements-initializers.md index dc25961..1bfcc4f 100644 --- a/docs/syntax-if-statements-initializers.md +++ b/docs/syntax-if-statements-initializers.md @@ -62,10 +62,6 @@ If statements with initializers must match the below grammar. The variables decl + 'if' cond 'then' block {'elseif' cond 'then' block} ['else' block] 'end' | 'for' binding '=' exp ',' exp [',' exp] 'do' block 'end' | ... - -- ifelseexp = 'if' exp 'then' exp {'elseif' exp 'then' exp} 'else' exp -+ ifelseexp = 'if' cond 'then' exp {'elseif' cond 'then' exp} 'else' exp - + cond = 'local' binding '=' exp ['where' exp] | + 'local' bindinglist '=' explist 'where' exp | + exp