mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
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:
parent
c327055db7
commit
03fcfb712a
2 changed files with 4 additions and 4 deletions
|
|
@ -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 |
|
||||
|
|
|
|||
|
|
@ -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 |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue