From b5046525d502129c57f9c1dddc32ee63bf7ad06d Mon Sep 17 00:00:00 2001 From: bendn Date: Thu, 10 Apr 2025 23:15:54 +0700 Subject: [PATCH] fix broken intra doc links --- .../stdarch/crates/core_arch/src/x86/avx512fp16.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/x86/avx512fp16.rs b/library/stdarch/crates/core_arch/src/x86/avx512fp16.rs index 1d07c5515a1a..a191ebfcb3b3 100644 --- a/library/stdarch/crates/core_arch/src/x86/avx512fp16.rs +++ b/library/stdarch/crates/core_arch/src/x86/avx512fp16.rs @@ -264,8 +264,8 @@ pub fn _mm512_setzero_ph() -> __m512h { /// Return vector of type `__m128h` with indetermination elements. /// Despite using the word "undefined" (following Intel's naming scheme), this non-deterministically -/// picks some valid value and is not equivalent to [`mem::MaybeUninit`]. -/// In practice, this is typically equivalent to [`mem::zeroed`]. +/// picks some valid value and is not equivalent to [`mem::MaybeUninit`](crate::mem::MaybeUninit). +/// In practice, this is typically equivalent to [`mem::zeroed`](crate::mem::zeroed). /// /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_undefined_ph) #[inline] @@ -277,8 +277,8 @@ pub fn _mm_undefined_ph() -> __m128h { /// Return vector of type `__m256h` with indetermination elements. /// Despite using the word "undefined" (following Intel's naming scheme), this non-deterministically -/// picks some valid value and is not equivalent to [`mem::MaybeUninit`]. -/// In practice, this is typically equivalent to [`mem::zeroed`]. +/// picks some valid value and is not equivalent to [`mem::MaybeUninit`](crate::mem::MaybeUninit). +/// In practice, this is typically equivalent to [`mem::zeroed`](crate::mem::zeroed). /// /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_undefined_ph) #[inline] @@ -290,8 +290,8 @@ pub fn _mm256_undefined_ph() -> __m256h { /// Return vector of type `__m512h` with indetermination elements. /// Despite using the word "undefined" (following Intel's naming scheme), this non-deterministically -/// picks some valid value and is not equivalent to [`mem::MaybeUninit`]. -/// In practice, this is typically equivalent to [`mem::zeroed`]. +/// picks some valid value and is not equivalent to [`mem::MaybeUninit`](crate::mem::MaybeUninit). +/// In practice, this is typically equivalent to [`mem::zeroed`](crate::mem::zeroed). /// /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm512_undefined_ph) #[inline]