diff options
author | chriseth <chris@ethereum.org> | 2016-08-16 21:08:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-16 21:08:05 +0800 |
commit | 70994f49960dd7066ad5de6fe835ccb1201269a6 (patch) | |
tree | ed7576b117eb562c1980137409f0956b4be36de9 /docs | |
parent | a80a7a784f5ee7ede08651e82d78e0260ce058ac (diff) | |
parent | d24c431ce5e34ac6fc60d81d44bd26fb1231efa4 (diff) | |
download | dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.tar dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.tar.gz dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.tar.bz2 dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.tar.lz dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.tar.xz dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.tar.zst dexon-solidity-70994f49960dd7066ad5de6fe835ccb1201269a6.zip |
Merge pull request #904 from mocamircea/patch-9
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 e03d8d6a..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. |