Skip to content

Commit fb98796

Browse files
Apply suggestions
1 parent d85b614 commit fb98796

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

library/core/src/num/int_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ macro_rules! int_impl {
107107

108108
/// Returns the number of leading zeros in the binary representation of `self`.
109109
///
110-
/// The
110+
/// Depending on what you're doing with the value, you might also be interested in the
111111
#[doc = concat!("[`", stringify!($SelfTy), "::ilog2()`]")]
112-
/// function returns a consistent number, even if the type widens.
112+
/// function which returns a consistent number, even if the type widens.
113113
///
114114
/// # Examples
115115
///

library/core/src/num/uint_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ macro_rules! uint_impl {
109109

110110
/// Returns the number of leading zeros in the binary representation of `self`.
111111
///
112-
/// The
112+
/// Depending on what you're doing with the value, you might also be interested in the
113113
#[doc = concat!("[`", stringify!($SelfTy), "::ilog2()`]")]
114-
/// function returns a consistent number, even if the type widens.
114+
/// function which returns a consistent number, even if the type widens.
115115
///
116116
/// # Examples
117117
///

0 commit comments

Comments
 (0)