Skip to content

Commit

Permalink
Fixed Incorrect rendering of logicalOR and bitwiseOR operator (#5533)
Browse files Browse the repository at this point in the history
Fixes #5527
  • Loading branch information
iambijayd authored Feb 11, 2024
1 parent 1a50cb3 commit c8db037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/language/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ You can implement many of these [operators as class members][].
| shift | `<<`    `>>`    `>>>` | Left |
| bitwise AND | `&` | Left |
| bitwise XOR | `^` | Left |
| bitwise OR | `| ` | Left |
| bitwise OR | <code>&#124;</code> | Left |
| relational&nbsp;and&nbsp;type&nbsp;test | `>=`    `>`    `<=`    `<`    `as`    `is`    `is!` | None |
| equality | `==`    `!=`    | None |
| logical AND | `&&` | Left |
| logical OR | `| |` | Left |
| logical OR | <code>&#124;&#124;</code> | Left |
| if null | `??` | Left |
| conditional | <code><em>expr1</em> ? <em>expr2</em> : <em>expr3</em></code> | Right |
| cascade | `..` &nbsp;&nbsp; `?..` | Left |
Expand Down

0 comments on commit c8db037

Please sign in to comment.