aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7d773fc..299f733 100644
--- a/README.md
+++ b/README.md
@@ -21,8 +21,8 @@ or can be interpreted with the [ABCMachine][abc-github] project.
| 'return' [<Expression>] ';'
| 'if' '(' <Expression> ')' '{' <CodeBlock> '}'
['else' 'if' '(' <Expression> ')' '{' <CodeBlock> '}']-list
- ['else' '{' <CodeBlock> '}'] ';'
- | 'while' '(' <Expression> ')' '{' <CodeBlock> '}' ';'
+ ['else' '{' <CodeBlock> '}']
+ | 'while' '(' <Expression> ')' '{' <CodeBlock> '}'
| '|~' <MachineCode>
<Expression> ::= <Name>