Merge pull request #4501 from dschrempf/master

Remove newline in operator table.
This commit is contained in:
Eelco Dolstra 2021-02-01 17:48:28 +01:00 committed by GitHub
commit 0e05cb6c61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,5 +25,4 @@ order of precedence (from strongest to weakest binding).
| Inequality | *e1* `!=` *e2* | none | Inequality. | 11 |
| Logical AND | *e1* `&&` *e2* | left | Logical AND. | 12 |
| Logical OR | *e1* `\|\|` *e2* | left | Logical OR. | 13 |
| Logical Implication | *e1* `->` *e2* | none | Logical implication (equivalent to `!e1 \|\|
e2`). | 14 |
| Logical Implication | *e1* `->` *e2* | none | Logical implication (equivalent to `!e1 \|\| e2`). | 14 |