diff --git a/library/core/src/num/int_macros.rs b/library/core/src/num/int_macros.rs index 0f4555a8605f..1d20bdddf085 100644 --- a/library/core/src/num/int_macros.rs +++ b/library/core/src/num/int_macros.rs @@ -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 /// diff --git a/library/core/src/num/uint_macros.rs b/library/core/src/num/uint_macros.rs index d5c6a5cee987..e5f8e26f2862 100644 --- a/library/core/src/num/uint_macros.rs +++ b/library/core/src/num/uint_macros.rs @@ -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 ///