diff --git a/doc/go_spec.html b/doc/go_spec.html index ef39535d6f..d491db65f0 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2436,8 +2436,8 @@ The operand types in binary operations must be compatible, with the following ex an ideal number, the ideal number is converted to match the type of the other operand (§Expressions). -
/ and %).
-Unary operators have the highest precedence. They are evaluated from
-right to left. As the ++ and -- operators form
+Unary operators have the highest precedence.
+As the ++ and -- operators form
statements, not expressions, they fall
-outside the unary operator hierarchy and apply
-to the operand on the left.
+outside the operator hierarchy.
As a consequence, statement *p++ is the same as (*p)++.
There are six precedence levels for binary operators.