aboutsummaryrefslogtreecommitdiffstats
path: root/docs/julia.rst
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-20 01:07:30 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-11-22 11:33:06 +0800
commitd9abe7b712a80aab26366f772cea15221184bcbf (patch)
tree358ab5c93e159558c244c710d9fd15d7631e67ef /docs/julia.rst
parente9b08e029eb48fff9cd3b3287a88e1282395bfb4 (diff)
downloaddexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar
dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.gz
dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.bz2
dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.lz
dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.xz
dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.zst
dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.zip
Require at least one case in switch
Diffstat (limited to 'docs/julia.rst')
-rw-r--r--docs/julia.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/julia.rst b/docs/julia.rst
index 7740bc70..42a3b663 100644
--- a/docs/julia.rst
+++ b/docs/julia.rst
@@ -88,7 +88,7 @@ Grammar::
Expression =
FunctionCall | Identifier | Literal
Switch =
- 'switch' Expression Case* ( 'default' ':' Block )?
+ 'switch' Expression Case+ ( 'default' ':' Block )?
Case =
'case' Literal ':' Block
ForLoop =