We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f41c22 + d0ed98b commit 0dce2a5Copy full SHA for 0dce2a5
content/data-and-variables/reading/operations/_index.md
@@ -90,12 +90,12 @@ The `%` operator returns the *remainder* obtained by carrying out integer divisi
90
- 7 % 2 is 1
91
92
The last two examples illustrate a general rule: An integer x is even exactly
93
-when `x % 2`% is %`0%` and is odd exactly when %`x % 2%` is %`1%`.
+when `x % 2` is `0` and is odd exactly when `x % 2` is `1`.
94
{{% /notice %}}
95
96
{{% notice blue Note "rocket" %}}
97
-The value returned by %`a % b%` will be in the range from `%0%` to %`b`%
98
-(not including `%b%`).
+The value returned by `a % b` will be in the range from `0` to `b`
+(not including `b`).
99
100
101
{{% notice green Tip "rocket" %}}
0 commit comments