aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/julia.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/julia.rst b/docs/julia.rst
index 42a3b663..f67b3384 100644
--- a/docs/julia.rst
+++ b/docs/julia.rst
@@ -88,9 +88,9 @@ Grammar::
Expression =
FunctionCall | Identifier | Literal
Switch =
- 'switch' Expression Case+ ( 'default' ':' Block )?
+ 'switch' Expression Case+ ( 'default' Block )?
Case =
- 'case' Literal ':' Block
+ 'case' Literal Block
ForLoop =
'for' Block Expression Block Block
BreakContinue =