diff --git a/docs/design/expressions/README.md b/docs/design/expressions/README.md index 76f95eba3ea0..927badf9c39e 100644 --- a/docs/design/expressions/README.md +++ b/docs/design/expressions/README.md @@ -340,7 +340,7 @@ Most expressions are modeled as operators: | Arithmetic | [`/`](arithmetic.md) | `x / y` | `x` divided by `y`, or the quotient thereof. | | Arithmetic | [`%`](arithmetic.md) | `x % y` | `x` modulo `y`. | | Bitwise | [`&`](bitwise.md) | `x & y` | The bitwise AND of `x` and `y`. | -| Bitwise | [`\|`](bitwise.md) | `x \| y` | The bitwise OR of `x` and `y`. | +| Bitwise | [\|](bitwise.md) | x \| y | The bitwise OR of `x` and `y`. | | Bitwise | [`^`](bitwise.md) (binary) | `x ^ y` | The bitwise XOR of `x` and `y`. | | Bitwise | [`<<`](bitwise.md) | `x << y` | `x` bit-shifted left `y` places. | | Bitwise | [`>>`](bitwise.md) | `x >> y` | `x` bit-shifted right `y` places. |