diff options
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 86f54453..3e766b5c 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; } |