Apply suggestions

This commit is contained in:
Albert Larsan 2022-11-11 10:53:58 +01:00
parent d85b61460a
commit fb98796892
No known key found for this signature in database
GPG Key ID: 92709B88BB8F13EA
2 changed files with 4 additions and 4 deletions

View File

@ -107,9 +107,9 @@ macro_rules! int_impl {
/// Returns the number of leading zeros in the binary representation of `self`.
///
/// The
/// Depending on what you're doing with the value, you might also be interested in the
#[doc = concat!("[`", stringify!($SelfTy), "::ilog2()`]")]
/// function returns a consistent number, even if the type widens.
/// function which returns a consistent number, even if the type widens.
///
/// # Examples
///

View File

@ -109,9 +109,9 @@ macro_rules! uint_impl {
/// Returns the number of leading zeros in the binary representation of `self`.
///
/// The
/// Depending on what you're doing with the value, you might also be interested in the
#[doc = concat!("[`", stringify!($SelfTy), "::ilog2()`]")]
/// function returns a consistent number, even if the type widens.
/// function which returns a consistent number, even if the type widens.
///
/// # Examples
///