diff --git a/src/lib.rs b/src/lib.rs index 22540ac..faf43bf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -312,7 +312,7 @@ impl> fmt::Display for Grid { // Adapted from the unstable API: // https://doc.rust-lang.org/std/primitive.usize.html#method.div_ceil -// Can be removed on MSRV 1.70. +// Can be removed on MSRV 1.73. /// Division with upward rounding pub const fn div_ceil(lhs: usize, rhs: usize) -> usize { let d = lhs / rhs;