aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKevin Florenzano <kevinflo@gmail.com>2018-04-05 16:12:48 +0800
committerKevin Florenzano <kevinflo@gmail.com>2018-04-05 16:12:48 +0800
commitd662622b25ab737887d0c002aec76fc3bbbaf909 (patch)
tree850d0c580f7564be7bb3c9ae1f370274cadc8544 /docs
parent884ea39d858c517f82196ecb2cf53bf10f46aa55 (diff)
downloaddexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.tar
dexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.tar.gz
dexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.tar.bz2
dexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.tar.lz
dexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.tar.xz
dexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.tar.zst
dexon-solidity-d662622b25ab737887d0c002aec76fc3bbbaf909.zip
Variable assignment wording change
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index cdc2d20d..40070a20 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -288,7 +288,7 @@ Solidity internally allows tuple types, i.e. a list of objects of potentially di
uint x;
bool b;
uint y;
- // These pre-existing variables can then be assigned to the tuple values
+ // Tuple values can be assigned to these pre-existing variables
(x, b, y) = f();
// Common trick to swap values -- does not work for non-value storage types.
(x, y) = (y, x);