diff options
author | chriseth <chris@ethereum.org> | 2017-07-31 17:44:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-31 17:44:35 +0800 |
commit | a73fb4d52957317cd341ad1a126ce3a499889d7b (patch) | |
tree | c1f4f452bed122c4a601b42d48ee6f39411f54bc | |
parent | 5f9c02c6b6e78ec80a5b8c2e6a467bb89b9a9454 (diff) | |
download | dexon-solidity-a73fb4d52957317cd341ad1a126ce3a499889d7b.tar.gz dexon-solidity-a73fb4d52957317cd341ad1a126ce3a499889d7b.tar.zst dexon-solidity-a73fb4d52957317cd341ad1a126ce3a499889d7b.zip |
Wording.
-rw-r--r-- | docs/assembly.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/assembly.rst b/docs/assembly.rst index a56e9cc1..a7cddb18 100644 --- a/docs/assembly.rst +++ b/docs/assembly.rst @@ -545,9 +545,8 @@ The following example computes the sum of an area in memory. } } -With the for loop header, it is also possible to declare it so it behaves -like a while loop. Simply leave the initialization and post-iteration -parts empty. +For loops can also be written so that they behave like while loops: +Simply leave the initialization and post-iteration parts empty. .. code:: |