aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);