Update docs/syntax-if-statements-initializers.md

Co-authored-by: Alexander McCord <11488393+alexmccord@users.noreply.github.com>
This commit is contained in:
James 2024-04-13 18:42:37 +01:00 committed by GitHub
parent b4e09afb9e
commit 548d4c8ba9
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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