diff options
author | chriseth <chris@ethereum.org> | 2017-05-20 01:07:30 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-22 11:33:06 +0800 |
commit | d9abe7b712a80aab26366f772cea15221184bcbf (patch) | |
tree | 358ab5c93e159558c244c710d9fd15d7631e67ef | |
parent | e9b08e029eb48fff9cd3b3287a88e1282395bfb4 (diff) | |
download | dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.gz dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.tar.zst dexon-solidity-d9abe7b712a80aab26366f772cea15221184bcbf.zip |
Require at least one case in switch
-rw-r--r-- | docs/julia.rst | 2 |
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 = |