From 6b88cc49a7b50b6fd705a12258826169139dfc68 Mon Sep 17 00:00:00 2001 From: Viacheslav Ivanov Date: Tue, 27 Sep 2016 20:07:39 +0300 Subject: [PATCH] Fix "Operator precedence and associativity" table Fixed table "Operator precedence and associativity": row "Unary operators" column "Operators" * Asterisk (`*`) changed to Minus (`-`) * added `await` operator --- expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expressions.md b/expressions.md index c9ef8c5..5e9e16b 100644 --- a/expressions.md +++ b/expressions.md @@ -117,7 +117,7 @@ The following table summarizes all operators in order of precedence from highest | __Section__ | __Category__ | __Operators__ | |-----------------------------------------------------------------------------------------------|-----------------------------|---------------| | [Primary expressions](expressions.md#primary-expressions) | Primary | `x.y` `f(x)` `a[x]` `x++` `x--` `new` `typeof` `default` `checked` `unchecked` `delegate` | -| [Unary operators](expressions.md#unary-operators) | Unary | `+` `*` `!` `~` `++x` `--x` `(T)x` | +| [Unary operators](expressions.md#unary-operators) | Unary | `+` `-` `!` `~` `++x` `--x` `(T)x` `await` | | [Arithmetic operators](expressions.md#arithmetic-operators) | Multiplicative | `*` `/` `%` | | [Arithmetic operators](expressions.md#arithmetic-operators) | Additive | `+` `-` | | [Shift operators](expressions.md#shift-operators) | Shift | `<<` `>>` |