diff options
-rw-r--r-- | docs/control-structures.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 0ad1c591..86f54453 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -154,21 +154,21 @@ As a result, the following code is illegal and cause the compiler to throw an er contract ScopingErrors { function scoping() { uint i = 0; - + while (i++ < 1) { uint same1 = 0; } - + while (i++ < 2) { uint same1 = 0;// Illegal, second declaration of same1 } } - + function minimalScoping() { { uint same2 = 0; } - + { uint same2 = 0;// Illegal, second declaration of same2 } |