@@ -2667,7 +2667,7 @@ pub unsafe fn vtable_align(ptr: *const ()) -> usize;
2667
2667
/// More specifically, this is the offset in bytes between successive
2668
2668
/// items of the same type, including alignment padding.
2669
2669
///
2670
- /// The stabilized version of this intrinsic is [`size_of`].
2670
+ /// The stabilized version of this intrinsic is [`core::mem:: size_of`].
2671
2671
#[ rustc_nounwind]
2672
2672
#[ unstable( feature = "core_intrinsics" , issue = "none" ) ]
2673
2673
#[ rustc_intrinsic_const_stable_indirect]
@@ -2681,7 +2681,7 @@ pub const fn size_of<T>() -> usize;
2681
2681
/// Therefore, implementations must not require the user to uphold
2682
2682
/// any safety invariants.
2683
2683
///
2684
- /// The stabilized version of this intrinsic is [`align_of`].
2684
+ /// The stabilized version of this intrinsic is [`core::mem:: align_of`].
2685
2685
#[ rustc_nounwind]
2686
2686
#[ unstable( feature = "core_intrinsics" , issue = "none" ) ]
2687
2687
#[ rustc_intrinsic_const_stable_indirect]
@@ -2704,7 +2704,7 @@ pub const fn variant_count<T>() -> usize;
2704
2704
2705
2705
/// The size of the referenced value in bytes.
2706
2706
///
2707
- /// The stabilized version of this intrinsic is [`size_of_val`].
2707
+ /// The stabilized version of this intrinsic is [`core::mem:: size_of_val`].
2708
2708
///
2709
2709
/// # Safety
2710
2710
///
@@ -2717,7 +2717,7 @@ pub const unsafe fn size_of_val<T: ?Sized>(ptr: *const T) -> usize;
2717
2717
2718
2718
/// The required alignment of the referenced value.
2719
2719
///
2720
- /// The stabilized version of this intrinsic is [`align_of_val`].
2720
+ /// The stabilized version of this intrinsic is [`core::mem:: align_of_val`].
2721
2721
///
2722
2722
/// # Safety
2723
2723
///
0 commit comments