don't escape vertical bar

Fixes dotnet/docs#6335

Because these are in a code fence, the back-slash was rendering on the docs platform. This still renders correctly in GFM, and on docs.

/cc @HankiDesign
This commit is contained in:
Bill Wagner 2018-08-21 16:35:44 -04:00
parent 3708b698b5
commit 36504baa66

View file

@ -277,9 +277,9 @@ The following table summarizes C#'s operators, listing the operator categories i
| | `x != y` | Not equal |
| Logical AND | `x & y` | Integer bitwise AND, boolean logical AND |
| Logical XOR | `x ^ y` | Integer bitwise XOR, boolean logical XOR |
| Logical OR | `x \| y` | Integer bitwise OR, boolean logical OR |
| Logical OR | `x | y` | Integer bitwise OR, boolean logical OR |
| Conditional AND | `x && y` | Evaluates `y` only if `x` is `true` |
| Conditional OR | `x \|\| y` | Evaluates `y` only if `x` is `false` |
| Conditional OR | `x || y` | Evaluates `y` only if `x` is `false` |
| Null coalescing | `X ?? y` | Evaluates to `y` if `x` is `null`, to `x` otherwise |
| Conditional | `x ? y : z` | Evaluates `y` if `x` is `true`, `z` if `x` is `false` |
| Assignment or anonymous function | `x = y` | Assignment |