Skip to content

Commit 7e614f0

Browse files
committed
Fix typo typo
1 parent c247915 commit 7e614f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/core_simd/src/vector.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ where
368368
unsafe { Self::gather_select_ptr(ptrs, enable, or) }
369369
}
370370

371-
/// Read pointers elementwise into a SIMD vector vector.
371+
/// Read pointers elementwise into a SIMD vector.
372372
///
373373
/// # Safety
374374
///
@@ -398,7 +398,7 @@ where
398398
unsafe { Self::gather_select_ptr(source, Mask::splat(true), Self::default()) }
399399
}
400400

401-
/// Conditionally read pointers elementwise into a SIMD vector vector.
401+
/// Conditionally read pointers elementwise into a SIMD vector.
402402
/// The mask `enable`s all `true` lanes and disables all `false` lanes.
403403
/// If a lane is disabled, the lane is selected from the `or` vector and no read is performed.
404404
///
@@ -541,7 +541,7 @@ where
541541
}
542542
}
543543

544-
/// Write pointers elementwise into a SIMD vector vector.
544+
/// Write pointers elementwise into a SIMD vector.
545545
///
546546
/// # Safety
547547
///
@@ -566,7 +566,7 @@ where
566566
unsafe { self.scatter_select_ptr(dest, Mask::splat(true)) }
567567
}
568568

569-
/// Conditionally write pointers elementwise into a SIMD vector vector.
569+
/// Conditionally write pointers elementwise into a SIMD vector.
570570
/// The mask `enable`s all `true` lanes and disables all `false` lanes.
571571
/// If a lane is disabled, the write to that lane is skipped.
572572
///

0 commit comments

Comments
 (0)