From 7a203241420fa266cff5640acdc9015f04804901 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Thu, 28 Jul 2016 15:16:52 -0400 Subject: [PATCH] Link to order of precedence table --- docs/control-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-structures.rst b/docs/control-structures.rst index f30a5bddc..9d7ebeacf 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