Fix docs for uX::checked_next_multiple_of

This commit is contained in:
Jacob Pratt 2021-09-07 02:14:04 -04:00
parent 371f3cd3fe
commit 56bb6f5a25
No known key found for this signature in database
GPG Key ID: B80E19E4662B5AA4

View File

@ -1927,7 +1927,8 @@ macro_rules! uint_impl {
}
/// Calculates the smallest value greater than or equal to `self` that
/// is a multiple of `rhs`. If `rhs` is negative,
/// is a multiple of `rhs`. Returns `None` is `rhs` is zero or the
/// operation would result in overflow.
///
/// # Examples
///