diff options
Diffstat (limited to 'vendor/rustc-rayon/src/math.rs')
-rw-r--r-- | vendor/rustc-rayon/src/math.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/rustc-rayon/src/math.rs b/vendor/rustc-rayon/src/math.rs index 9de588965..3a630be14 100644 --- a/vendor/rustc-rayon/src/math.rs +++ b/vendor/rustc-rayon/src/math.rs @@ -1,7 +1,7 @@ use std::ops::{Bound, Range, RangeBounds}; /// Divide `n` by `divisor`, and round up to the nearest integer -/// if not evenly divisable. +/// if not evenly divisible. #[inline] pub(super) fn div_round_up(n: usize, divisor: usize) -> usize { debug_assert!(divisor != 0, "Division by zero!"); |