From 03fcfb712a93c6ffe2e07effd63c6bb34d39d925 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Tue, 1 Feb 2022 00:04:25 -0500 Subject: [PATCH] Fix operator-precedence doc table to match DSL grammar (#911) * Fix multiple on-line-help issues from #907 * build-artifacts for previous commit * Fix operator-precedence doc table to match DSL grammar --- docs/src/reference-dsl-operators.md | 4 ++-- docs/src/reference-dsl-operators.md.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 |