Update control-structures.rst

This commit is contained in:
Omkar Nikhal 2020-09-12 12:50:36 +05:30 committed by GitHub
parent 31b5102aa0
commit 55a7173e27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ Solidity also supports exception handling in the form of ``try``/``catch``-state
but only for :ref:`external function calls <external-function-calls>` and but only for :ref:`external function calls <external-function-calls>` and
contract creation calls. contract creation calls.
Parentheses can *not* be omitted for conditionals, but curly brances can be omitted Parentheses can *not* be omitted for conditionals, but curly braces can be omitted
around single-statement bodies. around single-statement bodies.
Note that there is no type conversion from non-boolean to boolean types as Note that there is no type conversion from non-boolean to boolean types as