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 |