From 8557a2e1a510d0e195af7b93977bb9866a45b796 Mon Sep 17 00:00:00 2001 From: Chris McIntyre Date: Fri, 1 Jun 2018 08:24:49 -0700 Subject: [PATCH] Fixed operator precedence in example (#7912) The order of operations was incorrect for the right-hand side of the `assert` statement on line 3199, based on the operator precedence for line 3197. --- doc/manual.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual.rst b/doc/manual.rst index 95af86a6a9..d0a778bddb 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -3196,7 +3196,7 @@ notation. (Thus an operator can have more than two parameters): # Multiply and add result = a * b + c - assert `*+`(3, 4, 6) == `*`(a, `+`(b, c)) + assert `*+`(3, 4, 6) == `+`(`*`(a, b), c) Export marker