Skip to content

Commit 12f8494

Browse files
authored
Remove escape characters (#565)
Fixes #564
1 parent 96ea33f commit 12f8494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

standard/expressions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ The precedence of an operator is established by the definition of its associated
150150
> | [§11.11](expressions.md#1111-relational-and-type-testing-operators) | Equality | `==` `!=`
151151
> | [§11.12](expressions.md#1112-logical-operators) | Logical AND | `&`
152152
> | [§11.12](expressions.md#1112-logical-operators) | Logical XOR | `^`
153-
> | [§11.12](expressions.md#1112-logical-operators) | Logical OR | `\|`
153+
> | [§11.12](expressions.md#1112-logical-operators) | Logical OR | `|`
154154
> | [§11.13](expressions.md#1113-conditional-logical-operators) | Conditional AND | `&&`
155-
> | [§11.13](expressions.md#1113-conditional-logical-operators) | Conditional OR | `\|\|`
155+
> | [§11.13](expressions.md#1113-conditional-logical-operators) | Conditional OR | `||`
156156
> | [§11.14](expressions.md#1114-the-null-coalescing-operator) | Null coalescing | `??`
157157
> | [§11.15](expressions.md#1115-conditional-operator) | Conditional | `?:`
158158
> | [§11.18](expressions.md#1118-assignment-operators) and [§11.16](expressions.md#1116-anonymous-function-expressions) | Assignment and lambda expression | `=` `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `&=` `^=` `\|=` `=>`

0 commit comments

Comments
 (0)