Skip to content

Commit cbf1931

Browse files
authored
Pipe characters were not escaped properly.
Inside backticks, the hex entities were showing up as the literal characters &MicrosoftDocs#124;
1 parent bed1fb5 commit cbf1931

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/cpp/cpp-built-in-operators-precedence-and-associativity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ The C++ language includes all C operators and adds several new operators. Operat
7575
|`Group 11 precedence, left to right associativity`|
7676
|[Bitwise exclusive OR](../cpp/bitwise-exclusive-or-operator-hat.md)|`^`|
7777
|`Group 12 precedence, left to right associativity`|
78-
|[Bitwise inclusive OR](../cpp/bitwise-inclusive-or-operator-pipe.md)|`|`|
78+
|[Bitwise inclusive OR](../cpp/bitwise-inclusive-or-operator-pipe.md)|`\|`|
7979
|`Group 13 precedence, left to right associativity`|
8080
|[Logical AND](../cpp/logical-and-operator-amp-amp.md)|`&&`|
8181
|`Group 14 precedence, left to right associativity`|
82-
|[Logical OR](../cpp/logical-or-operator-pipe-pipe.md)|`||`|
82+
|[Logical OR](../cpp/logical-or-operator-pipe-pipe.md)|`\|\|`|
8383
|`Group 15 precedence, right to left associativity`|
8484
|[Conditional](../cpp/conditional-operator-q.md)|`? :`|
8585
|`Group 16 precedence, right to left associativity`|
@@ -92,7 +92,7 @@ The C++ language includes all C operators and adds several new operators. Operat
9292
|[Left-shift assignment](../cpp/assignment-operators.md)|`<<=`|
9393
|[Right-shift assignment](../cpp/assignment-operators.md)|`>>=`|
9494
|[Bitwise AND assignment](../cpp/assignment-operators.md)|`&=`|
95-
|[Bitwise inclusive OR assignment](../cpp/assignment-operators.md)|`&#124;=`|
95+
|[Bitwise inclusive OR assignment](../cpp/assignment-operators.md)|`\|=`|
9696
|[Bitwise exclusive OR assignment](../cpp/assignment-operators.md)|`^=`|
9797
|`Group 17 precedence, right to left associativity`|
9898
|[throw expression](../cpp/try-throw-and-catch-statements-cpp.md)|`throw`|

0 commit comments

Comments
 (0)