aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-05-12 21:48:56 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-05-12 21:48:56 +0800
commite60a17379e350eed72c9a0b6c4c100a9f08ba215 (patch)
tree8b4925be33637c9d18b7df555b9b7317fe298b12 /docs
parent52a8d7b3f5cbf3538d0c4e9f60446ebb59fb72ff (diff)
downloaddexon-solidity-e60a17379e350eed72c9a0b6c4c100a9f08ba215.tar.gz
dexon-solidity-e60a17379e350eed72c9a0b6c4c100a9f08ba215.tar.zst
dexon-solidity-e60a17379e350eed72c9a0b6c4c100a9f08ba215.zip
Removed trailing spaces
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst8
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
}