From 55a7173e278ae5810a15d9f0e7cc9a53e3795993 Mon Sep 17 00:00:00 2001 From: Omkar Nikhal <69253915+cakesoft-omkar@users.noreply.github.com> Date: Sat, 12 Sep 2020 12:50:36 +0530 Subject: [PATCH] Update control-structures.rst --- docs/control-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 3b4bc4448..3487cb0ce 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -19,7 +19,7 @@ Solidity also supports exception handling in the form of ``try``/``catch``-state but only for :ref:`external function calls ` and 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. Note that there is no type conversion from non-boolean to boolean types as