Skip to content

Commit 1999c54

Browse files
Clarify concatenation order
Co-authored-by: Jubilee <[email protected]>
1 parent 977f26f commit 1999c54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/core_simd/src/permute.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ macro_rules! impl_shuffle_lane {
7171

7272
/// Deinterleave two vectors.
7373
///
74-
/// The first result contains the even lanes of `self` and `other` concatenated.
74+
/// The first result contains the even lanes of `self` and then `other`, concatenated.
7575
///
76-
/// The second result contains the odd lanes of `self` and `other` concatenated.
76+
/// The second result contains the odd lanes of `self` and then `other`, concatenated.
7777
#[inline]
7878
pub fn deinterleave(self, other: Self) -> (Self, Self) {
7979
const fn even() -> [u32; $n] {

0 commit comments

Comments
 (0)