From 47068b1a065fed45b260cee843cec32f99ac8ee4 Mon Sep 17 00:00:00 2001 From: Jonas Fierlings Date: Mon, 29 Jul 2024 19:11:36 +0200 Subject: [PATCH] Fix markdown list in docs --- library/stdarch/crates/core_arch/src/x86/sse2.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/x86/sse2.rs b/library/stdarch/crates/core_arch/src/x86/sse2.rs index bb4435b6ed84..223a12f63c52 100644 --- a/library/stdarch/crates/core_arch/src/x86/sse2.rs +++ b/library/stdarch/crates/core_arch/src/x86/sse2.rs @@ -2920,9 +2920,8 @@ pub unsafe fn _mm_undefined_si128() -> __m128i { /// The resulting `__m128d` element is composed by the low-order values of /// the two `__m128d` interleaved input elements, i.e.: /// -/// * The `[127:64]` bits are copied from the `[127:64]` bits of the second -/// input * The `[63:0]` bits are copied from the `[127:64]` bits of the first -/// input +/// * The `[127:64]` bits are copied from the `[127:64]` bits of the second input +/// * The `[63:0]` bits are copied from the `[127:64]` bits of the first input /// /// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_unpackhi_pd) #[inline]