Fix documentation of arguments of function core::arch::x86::_mm_blendv_epi8

This commit is contained in:
Mathilda 2024-06-25 13:50:32 -04:00 committed by Amanieu d'Antras
parent 8e3abdc290
commit e2d9ac5145

View file

@ -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]