From 50eb3b8f8f8679e4508ae0da741af65f8cd4a263 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Thu, 12 May 2016 09:49:49 -0400 Subject: [PATCH] Moved comment to more logical place --- 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 86f544539..3e766b5c8 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -187,8 +187,8 @@ In addition to this, if a variable is declared, it will be initialized at the be As a result, the following code is legal, despite being poorly written.:: function foo() returns (uint) { - uint bar = 5; // baz is implicitly initialized as 0 + uint bar = 5; if (true) { bar += baz; }