Skip to content

Commit da0ec46

Browse files
syvbJohnTitor
andauthored
Use one sentence per line
Co-authored-by: Yuki Okushi <[email protected]>
1 parent 72d84ba commit da0ec46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/expressions/operator-expr.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ The following things are considered to be overflow:
2424

2525
* When `+`, `*` or `-` create a value greater than the maximum value, or less than the minimum value that can be stored.
2626
This includes unary `-` on the smallest value of any signed integer type.
27-
* Using `/` or `%`, where the left-hand argument is the smallest integer of a signed integer type and the right-hand argument is `-1`. These checks occur even when `-C overflow-checks` is disabled, for legacy reasons.
27+
* Using `/` or `%`, where the left-hand argument is the smallest integer of a signed integer type and the right-hand argument is `-1`.
28+
These checks occur even when `-C overflow-checks` is disabled, for legacy reasons.
2829
* Using `<<` or `>>` where the right-hand argument is greater than or equal to the number of bits in the type of the left-hand argument, or is negative.
2930

3031
## Borrow operators

0 commit comments

Comments
 (0)