From 765bee6362371185159cc68fbb708c64a621ae3c Mon Sep 17 00:00:00 2001 From: Caleb Zulawski Date: Sat, 2 Oct 2021 05:07:51 -0400 Subject: [PATCH] Update crates/core_simd/src/swizzle.rs Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com> --- crates/core_simd/src/swizzle.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/core_simd/src/swizzle.rs b/crates/core_simd/src/swizzle.rs index d4702784dc5..9ce46cfe816 100644 --- a/crates/core_simd/src/swizzle.rs +++ b/crates/core_simd/src/swizzle.rs @@ -1,9 +1,7 @@ use crate::simd::intrinsics; use crate::{LaneCount, Simd, SimdElement, SupportedLaneCount}; -/// Rearrange vector elements. -/// -/// A new vector is constructed by specifying the the lanes of the source vector or vectors to use. +/// Constructs a new vector by selecting values from the lanes of the source vector or vectors to use. /// /// When swizzling one vector, the indices of the result vector are indicated by a `const` array /// of `usize`, like [`Swizzle`].