aboutsummaryrefslogtreecommitdiffstats
path: root/docs/control-structures.rst
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-08-01 18:40:24 +0800
committerGitHub <noreply@github.com>2016-08-01 18:40:24 +0800
commit66133469e9422377747ff16f23b849e37f673ef1 (patch)
treea40531df98fb3f4d1a28c823d3ce717e25889651 /docs/control-structures.rst
parent8c5a56d8648c9722d96638bf6dc1be94c7828cb3 (diff)
parent5687beb424663871d3d59c6bd12d71fff79d5200 (diff)
downloaddexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.tar
dexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.tar.gz
dexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.tar.bz2
dexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.tar.lz
dexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.tar.xz
dexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.tar.zst
dexon-solidity-66133469e9422377747ff16f23b849e37f673ef1.zip
Merge pull request #732 from Denton-L/document-precedence
Document precedence
Diffstat (limited to 'docs/control-structures.rst')
-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 f30a5bdd..9d7ebeac 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -113,7 +113,7 @@ The evaluation order of expressions is not specified (more formally, the order
in which the children of one node in the expression tree are evaluated is not
specified, but they are of course evaluated before the node itself). It is only
guaranteed that statements are executed in order and short-circuiting for
-boolean expressions is done.
+boolean expressions is done. See :ref:`order` for more information.
.. index:: ! assignment