File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ macro_rules! int_impl {
435
435
}
436
436
437
437
/// Checked integer division. Computes `self / rhs`, returning `None`
438
- /// if `rhs == 0` or the operation results in overflow.
438
+ /// if `rhs == 0` or the division results in overflow.
439
439
///
440
440
/// # Examples
441
441
///
@@ -457,7 +457,7 @@ macro_rules! int_impl {
457
457
}
458
458
459
459
/// Checked integer remainder. Computes `self % rhs`, returning `None`
460
- /// if `rhs == 0` or the operation results in overflow.
460
+ /// if `rhs == 0` or the division results in overflow.
461
461
///
462
462
/// # Examples
463
463
///
@@ -1599,7 +1599,7 @@ macro_rules! uint_impl {
1599
1599
}
1600
1600
1601
1601
/// Checked integer division. Computes `self / rhs`, returning `None`
1602
- /// if `rhs == 0` or the operation results in overflow .
1602
+ /// if `rhs == 0`.
1603
1603
///
1604
1604
/// # Examples
1605
1605
///
@@ -1619,7 +1619,7 @@ macro_rules! uint_impl {
1619
1619
}
1620
1620
1621
1621
/// Checked integer remainder. Computes `self % rhs`, returning `None`
1622
- /// if `rhs == 0` or the operation results in overflow .
1622
+ /// if `rhs == 0`.
1623
1623
///
1624
1624
/// # Examples
1625
1625
///
You can’t perform that action at this time.
0 commit comments