Skip to content

Commit 95239e9

Browse files
bend-nAmanieu
authored andcommitted
fix broken intra doc links
1 parent 6780277 commit 95239e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

crates/core_arch/src/x86/avx512fp16.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ pub fn _mm512_setzero_ph() -> __m512h {
264264

265265
/// Return vector of type `__m128h` with indetermination elements.
266266
/// Despite using the word "undefined" (following Intel's naming scheme), this non-deterministically
267-
/// picks some valid value and is not equivalent to [`mem::MaybeUninit`].
268-
/// In practice, this is typically equivalent to [`mem::zeroed`].
267+
/// picks some valid value and is not equivalent to [`mem::MaybeUninit`](crate::mem::MaybeUninit).
268+
/// In practice, this is typically equivalent to [`mem::zeroed`](crate::mem::zeroed).
269269
///
270270
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_undefined_ph)
271271
#[inline]
@@ -277,8 +277,8 @@ pub fn _mm_undefined_ph() -> __m128h {
277277

278278
/// Return vector of type `__m256h` with indetermination elements.
279279
/// Despite using the word "undefined" (following Intel's naming scheme), this non-deterministically
280-
/// picks some valid value and is not equivalent to [`mem::MaybeUninit`].
281-
/// In practice, this is typically equivalent to [`mem::zeroed`].
280+
/// picks some valid value and is not equivalent to [`mem::MaybeUninit`](crate::mem::MaybeUninit).
281+
/// In practice, this is typically equivalent to [`mem::zeroed`](crate::mem::zeroed).
282282
///
283283
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_undefined_ph)
284284
#[inline]
@@ -290,8 +290,8 @@ pub fn _mm256_undefined_ph() -> __m256h {
290290

291291
/// Return vector of type `__m512h` with indetermination elements.
292292
/// Despite using the word "undefined" (following Intel's naming scheme), this non-deterministically
293-
/// picks some valid value and is not equivalent to [`mem::MaybeUninit`].
294-
/// In practice, this is typically equivalent to [`mem::zeroed`].
293+
/// picks some valid value and is not equivalent to [`mem::MaybeUninit`](crate::mem::MaybeUninit).
294+
/// In practice, this is typically equivalent to [`mem::zeroed`](crate::mem::zeroed).
295295
///
296296
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm512_undefined_ph)
297297
#[inline]

0 commit comments

Comments
 (0)