looked for other code fenced bars

Removed them as well.
This commit is contained in:
Bill Wagner 2018-08-21 16:54:43 -04:00
parent 36504baa66
commit d93a726f4c
2 changed files with 5 additions and 5 deletions

View file

@ -125,12 +125,12 @@ The following table summarizes all operators in order of precedence from highest
| [Relational and type-testing operators](expressions.md#relational-and-type-testing-operators) | Equality | `==` `!=` |
| [Logical operators](expressions.md#logical-operators) | Logical AND | `&` |
| [Logical operators](expressions.md#logical-operators) | Logical XOR | `^` |
| [Logical operators](expressions.md#logical-operators) | Logical OR | `\|` |
| [Logical operators](expressions.md#logical-operators) | Logical OR | `|` |
| [Conditional logical operators](expressions.md#conditional-logical-operators) | Conditional AND | `&&` |
| [Conditional logical operators](expressions.md#conditional-logical-operators) | Conditional OR | `\|\|` |
| [Conditional logical operators](expressions.md#conditional-logical-operators) | Conditional OR | `||` |
| [The null coalescing operator](expressions.md#the-null-coalescing-operator) | Null coalescing | `??` |
| [Conditional operator](expressions.md#conditional-operator) | Conditional | `?:` |
| [Assignment operators](expressions.md#assignment-operators), [Anonymous function expressions](expressions.md#anonymous-function-expressions) | Assignment and lambda expression | `=` `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `&=` `^=` `\|=` `=>` |
| [Assignment operators](expressions.md#assignment-operators), [Anonymous function expressions](expressions.md#anonymous-function-expressions) | Assignment and lambda expression | `=` `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `&=` `^=` `|=` `=>` |
When an operand occurs between two operators with the same precedence, the associativity of the operators controls the order in which the operations are performed:
@ -3505,7 +3505,7 @@ bool? operator |(bool? x, bool? y);
The following table lists the results produced by these operators for all combinations of the values `true`, `false`, and `null`.
| `x` | `y` | `x & y` | `x \| y`|
| `x` | `y` | `x & y` | `x | y` |
|:-------:|:-------:|:-------:|:-------:|
| `true` | `true` | `true` | `true` |
| `true` | `false` | `false` | `true` |

View file

@ -283,7 +283,7 @@ The following table summarizes C#'s operators, listing the operator categories i
| 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 |
| | `x op= y` | Compound assignment; supported operators are `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `&=` `^=` `\|=` |
| | `x op= y` | Compound assignment; supported operators are `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `&=` `^=` `|=` |
| | `(T x) => y` | Anonymous function (lambda expression) |
## Statements