diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-29 03:16:52 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-29 03:19:04 +0800 |
commit | 7a203241420fa266cff5640acdc9015f04804901 (patch) | |
tree | b9bbf4a5d600ce9c5f38aa6cac43cc147fd6a1d7 /docs | |
parent | 8bf96b1c43febe3c082a9d60af6ebdc44d4eca68 (diff) | |
download | dexon-solidity-7a203241420fa266cff5640acdc9015f04804901.tar.gz dexon-solidity-7a203241420fa266cff5640acdc9015f04804901.tar.zst dexon-solidity-7a203241420fa266cff5640acdc9015f04804901.zip |
Link to order of precedence table
Diffstat (limited to 'docs')
-rw-r--r-- | docs/control-structures.rst | 2 |
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 |