From 56442054d494a2e94a91c6b80eab32aa2eb3f5f0 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Thu, 11 Apr 2019 06:12:07 +0200 Subject: [PATCH] Update page 'Aer v1.0 Specification' --- Aer-v1.0-Specification.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Aer-v1.0-Specification.md b/Aer-v1.0-Specification.md index b8889e1..8a4ea23 100644 --- a/Aer-v1.0-Specification.md +++ b/Aer-v1.0-Specification.md @@ -290,7 +290,7 @@ When an expression contains multiple operators, the precedence of the operators | 1 | object-related | clone new | non-associative | | 2 | postfix operators | -> :: [ | left-associative | | 3 | increment / decrement | ++ -- | non-associative | -| 4 | unary operators | - + ~ ! @ | right-associative | +| 4 | unary operators | - + ~ ! | right-associative | | 4 | cast operators | (typedef) | right-associative | | 7 | object-related | instanceof | non-associative | | 7 | arithmetic operators | * / % | left-associative | @@ -305,7 +305,7 @@ When an expression contains multiple operators, the precedence of the operators | 15 | logical and | && | left-associative | | 16 | logical xor | ^^ | left-associative | | 17 | logical or | \|\| | left-associative | -| 18 | ternary operator | ? | left-associative | +| 18 | ternary operator | ? : | left-associative | | 19 | assignment operators | = += -= *= /= %= | right-associative | | 23 | comma operator | , | left-associative |