diff options
author | Mircea Moca <mocamircea@gmail.com> | 2016-08-16 21:06:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 21:06:08 +0800 |
commit | d24c431ce5e34ac6fc60d81d44bd26fb1231efa4 (patch) | |
tree | 75b506ae1e050da9b5de6a8c0709a0b59b551d8c /docs | |
parent | ae0654443cdfe07737bf4e683e1f41ab6e96d6e2 (diff) | |
download | dexon-solidity-d24c431ce5e34ac6fc60d81d44bd26fb1231efa4.tar.gz dexon-solidity-d24c431ce5e34ac6fc60d81d44bd26fb1231efa4.tar.zst dexon-solidity-d24c431ce5e34ac6fc60d81d44bd26fb1231efa4.zip |
Update control-structures.rst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/control-structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 71fecb71..eb337928 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -10,7 +10,7 @@ Control Structures Most of the control structures from C/JavaScript are available in Solidity except for ``switch`` and ``goto``. So there is: ``if``, ``else``, ``while``, ``for``, ``break``, ``continue``, ``return``, ``? :``, with -the usual semantics known from C/JavaScript. +the usual semantics known from C or JavaScript. Parentheses can *not* be omitted for conditionals, but curly brances can be omitted around single-statement bodies. |