From 1999c54890d57aec3432335715ce29ec87abfeda Mon Sep 17 00:00:00 2001 From: Caleb Zulawski Date: Sat, 17 Apr 2021 15:21:25 -0400 Subject: [PATCH] Clarify concatenation order Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com> --- crates/core_simd/src/permute.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/core_simd/src/permute.rs b/crates/core_simd/src/permute.rs index 4f7ffd3a9554..ba14a019a395 100644 --- a/crates/core_simd/src/permute.rs +++ b/crates/core_simd/src/permute.rs @@ -71,9 +71,9 @@ macro_rules! impl_shuffle_lane { /// Deinterleave two vectors. /// - /// The first result contains the even lanes of `self` and `other` concatenated. + /// The first result contains the even lanes of `self` and then `other`, concatenated. /// - /// The second result contains the odd lanes of `self` and `other` concatenated. + /// The second result contains the odd lanes of `self` and then `other`, concatenated. #[inline] pub fn deinterleave(self, other: Self) -> (Self, Self) { const fn even() -> [u32; $n] {