@@ -2136,8 +2136,7 @@ macro_rules! uint_impl {
21362136 ///
21372137 /// # Examples
21382138 ///
2139- /// Please note that this example is shared between integer types.
2140- /// Which explains why `u8` is used here.
2139+ /// Please note that this example is shared among integer types, which is why `u8` is used.
21412140 ///
21422141 /// ```
21432142 /// assert_eq!(10u8.wrapping_mul(12), 120);
@@ -2627,8 +2626,8 @@ macro_rules! uint_impl {
26272626 ///
26282627 /// # Examples
26292628 ///
2630- /// Please note that this example is shared between integer types.
2631- /// Which explains why `u32` is used here .
2629+ /// Please note that this example is shared among integer types, which is why why `u32`
2630+ /// is used.
26322631 ///
26332632 /// ```
26342633 /// assert_eq!(5u32.overflowing_mul(2), (10, false));
@@ -2654,8 +2653,7 @@ macro_rules! uint_impl {
26542653 ///
26552654 /// # Examples
26562655 ///
2657- /// Please note that this example is shared between integer types.
2658- /// Which explains why `u32` is used here.
2656+ /// Please note that this example is shared among integer types, which is why `u32` is used.
26592657 ///
26602658 /// ```
26612659 /// #![feature(bigint_helper_methods)]
@@ -2685,8 +2683,7 @@ macro_rules! uint_impl {
26852683 ///
26862684 /// # Examples
26872685 ///
2688- /// Please note that this example is shared between integer types.
2689- /// Which explains why `u32` is used here.
2686+ /// Please note that this example is shared among integer types, which is why `u32` is used.
26902687 ///
26912688 /// ```
26922689 /// #![feature(bigint_helper_methods)]
0 commit comments