diff --git a/docs/src/reference-dsl-operators.md b/docs/src/reference-dsl-operators.md index f1d1a944b..06c075c96 100644 --- a/docs/src/reference-dsl-operators.md +++ b/docs/src/reference-dsl-operators.md @@ -28,9 +28,9 @@ Operators are listed in order of decreasing precedence, highest first. |-------------------------------|---------------| | `()` `{}` `[]` | left to right | | `**` | right to left | -| `!` `~` unary`+` unary`-` `&` | right to left | -| binary`*` `/` `//` `%` | left to right | +| `!` `~` unary`+` unary`-` | right to left | | `.` | left to right | +| `*` `/` `//` `%` | left to right | | binary`+` binary`-` | left to right | | `<<` `>>` `>>>` | left to right | | `&` | left to right | diff --git a/docs/src/reference-dsl-operators.md.in b/docs/src/reference-dsl-operators.md.in index cb35574e9..44be89e0b 100644 --- a/docs/src/reference-dsl-operators.md.in +++ b/docs/src/reference-dsl-operators.md.in @@ -12,9 +12,9 @@ Operators are listed in order of decreasing precedence, highest first. |-------------------------------|---------------| | `()` `{}` `[]` | left to right | | `**` | right to left | -| `!` `~` unary`+` unary`-` `&` | right to left | -| binary`*` `/` `//` `%` | left to right | +| `!` `~` unary`+` unary`-` | right to left | | `.` | left to right | +| `*` `/` `//` `%` | left to right | | binary`+` binary`-` | left to right | | `<<` `>>` `>>>` | left to right | | `&` | left to right |