From e2d9ac51459c77b719f5b4326b0bd6470edee3cc Mon Sep 17 00:00:00 2001 From: Mathilda Date: Tue, 25 Jun 2024 13:50:32 -0400 Subject: [PATCH] Fix documentation of arguments of function `core::arch::x86::_mm_blendv_epi8` --- library/stdarch/crates/core_arch/src/x86/sse41.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/x86/sse41.rs b/library/stdarch/crates/core_arch/src/x86/sse41.rs index 73270a5d0d4f..ad39b63be9ec 100644 --- a/library/stdarch/crates/core_arch/src/x86/sse41.rs +++ b/library/stdarch/crates/core_arch/src/x86/sse41.rs @@ -51,8 +51,8 @@ pub const _MM_FROUND_NEARBYINT: i32 = _MM_FROUND_NO_EXC | _MM_FROUND_CUR_DIRECTI /// Blend packed 8-bit integers from `a` and `b` using `mask` /// /// The high bit of each corresponding mask byte determines the selection. -/// If the high bit is set the element of `a` is selected. The element -/// of `b` is selected otherwise. +/// If the high bit is set, the element of `b` is selected. +/// Otherwise, the element of `a` is selected. /// /// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_blendv_epi8) #[inline]