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
This commit is contained in:
John Kerl 2022-02-01 00:04:25 -05:00 committed by GitHub
parent c327055db7
commit 03fcfb712a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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 |

View file

@ -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 |