Skip to content

Commit

Permalink
Fix markdown escape pipe character in table cell (#813)
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota authored Jan 14, 2025
1 parent f20a423 commit 9fa052b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/syntax_and_semantics/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ ones.
| Additive | `+`, `&+`, `-`, `&-` |
| Shift | `<<`, `>>` |
| Binary AND | `&` |
| Binary OR/XOR | `\|`,`^` |
| Binary OR/XOR | <code>\|</code>,`^` |
| Equality and Subsumption | `==`, `!=`, `=~`, `!~`, `===` |
| Comparison | `<`, `<=`, `>`, `>=`, `<=>` |
| Logical AND | `&&` |
| Logical OR | `\|\|` |
| Logical OR | <code>\|\|</code> |
| Range | `..`, `...` |
| Conditional | `?:` |
| Assignment | `=`, `[]=`, `+=`, `&+=`, `-=`, `&-=`, `*=`, `&*=`, `/=`, `//=`, `%=`, `\|=`, `&=`,`^=`,`**=`,`<<=`,`>>=`, `\|\|=`, `&&=` |
| Assignment | `=`, `[]=`, `+=`, `&+=`, `-=`, `&-=`, `*=`, `&*=`, `/=`, `//=`, `%=`, <code>\|=</code>, `&=`,`^=`,`**=`,`<<=`,`>>=`, <code>\|\|=</code>, `&&=` |
| Splat | `*`, `**` |

<!-- markdownlint-enable no-space-in-code -->
Expand Down Expand Up @@ -185,7 +185,7 @@ ones.
| Operator | Description | Example | Overloadable | Associativity |
|---|---|---|---|---|
| `&` | binary AND | `1 & 2` | yes | left |
| `\|` | binary OR | `1 \| 2` | yes | left |
| <code>\|</code> | binary OR | <code>1 \| 2</code> | yes | left |
| `^` | binary XOR | `1 ^ 2` | yes | left |

### Relational operators
Expand Down Expand Up @@ -283,7 +283,7 @@ For instance, `a == b <= c` is equivalent to `a == b && b <= c`, while `a <= b =
| Operator | Description | Example | Overloadable | Associativity |
|---|---|---|---|---|
| `&&` | [logical AND](and.md) | `true && false` | no | left |
| `\|\|` | [logical OR](or.md) | `true \|\| false` | no | left |
| <code>\|\|</code> | [logical OR](or.md) | <code>true \|\| false</code> | no | left |

### Range

Expand Down Expand Up @@ -362,13 +362,13 @@ The receiver can't be anything else than a variable or call.
| `/=` | division *and* assignment | `i /= 1` | no | right |
| `//=` | floor division *and* assignment | `i //= 1` | no | right |
| `%=` | modulo *and* assignment | `i %= 1` | yes | right |
| `\|=` | binary or *and* assignment | `i \|= 1` | no | right |
| <code>\|=</code> | binary or *and* assignment | <code>i \|= 1</code> | no | right |
| `&=` | binary and *and* assignment | `i &= 1` | no | right |
| `^=` | binary xor *and* assignment | `i ^= 1` | no | right |
| `**=` | exponential *and* assignment | `i **= 1` | no | right |
| `<<=` | left shift *and* assignment | `i <<= 1` | no | right |
| `>>=` | right shift *and* assignment | `i >>= 1` | no | right |
| `\|\|=` | logical or *and* assignment | `i \|\|= true` | no | right |
| <code>\|\|=</code> | logical or *and* assignment | <code>i \|\|= true</code> | no | right |
| `&&=` | logical and *and* assignment | `i &&= true` | no | right |

### Index Accessors
Expand Down

0 comments on commit 9fa052b

Please sign in to comment.