@@ -512,7 +512,7 @@ macro_rules! uint_impl {
512
512
#[ doc = concat!( "`self + rhs > " , stringify!( $SelfT) , "::MAX` or `self + rhs < " , stringify!( $SelfT) , "::MIN`," ) ]
513
513
/// i.e. when [`checked_add`] would return `None`.
514
514
///
515
- /// [`unwrap_unchecked`]: Option:: unwrap_unchecked
515
+ /// [`unwrap_unchecked`]: option/enum. Option.html#method. unwrap_unchecked
516
516
#[ doc = concat!( "[`checked_add`]: " , stringify!( $SelfT) , "::checked_add" ) ]
517
517
#[ doc = concat!( "[`wrapping_add`]: " , stringify!( $SelfT) , "::wrapping_add" ) ]
518
518
#[ stable( feature = "unchecked_math" , since = "CURRENT_RUSTC_VERSION" ) ]
@@ -660,7 +660,7 @@ macro_rules! uint_impl {
660
660
#[ doc = concat!( "`self - rhs > " , stringify!( $SelfT) , "::MAX` or `self - rhs < " , stringify!( $SelfT) , "::MIN`," ) ]
661
661
/// i.e. when [`checked_sub`] would return `None`.
662
662
///
663
- /// [`unwrap_unchecked`]: Option:: unwrap_unchecked
663
+ /// [`unwrap_unchecked`]: option/enum. Option.html#method. unwrap_unchecked
664
664
#[ doc = concat!( "[`checked_sub`]: " , stringify!( $SelfT) , "::checked_sub" ) ]
665
665
#[ doc = concat!( "[`wrapping_sub`]: " , stringify!( $SelfT) , "::wrapping_sub" ) ]
666
666
#[ stable( feature = "unchecked_math" , since = "CURRENT_RUSTC_VERSION" ) ]
@@ -746,7 +746,7 @@ macro_rules! uint_impl {
746
746
#[ doc = concat!( "`self * rhs > " , stringify!( $SelfT) , "::MAX` or `self * rhs < " , stringify!( $SelfT) , "::MIN`," ) ]
747
747
/// i.e. when [`checked_mul`] would return `None`.
748
748
///
749
- /// [`unwrap_unchecked`]: Option:: unwrap_unchecked
749
+ /// [`unwrap_unchecked`]: option/enum. Option.html#method. unwrap_unchecked
750
750
#[ doc = concat!( "[`checked_mul`]: " , stringify!( $SelfT) , "::checked_mul" ) ]
751
751
#[ doc = concat!( "[`wrapping_mul`]: " , stringify!( $SelfT) , "::wrapping_mul" ) ]
752
752
#[ stable( feature = "unchecked_math" , since = "CURRENT_RUSTC_VERSION" ) ]
0 commit comments