about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaleb Zulawski <caleb.zulawski@gmail.com>2022-11-12 22:39:54 -0500
committerGitHub <noreply@github.com>2022-11-12 22:39:54 -0500
commitc247915eb88af33302b2dc393fa7b488ee680a5f (patch)
tree4ba08b34d16534fd89d10e0818b48d2bb82f06ac
parentbef4c41fc0051444034ad9b488b06b2d512bfd17 (diff)
downloadrust-c247915eb88af33302b2dc393fa7b488ee680a5f.tar.gz
rust-c247915eb88af33302b2dc393fa7b488ee680a5f.zip
Update crates/core_simd/src/vector.rs
Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com>
-rw-r--r--crates/core_simd/src/vector.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/vector.rs b/crates/core_simd/src/vector.rs
index 52ed5490519..f25505f7c59 100644
--- a/crates/core_simd/src/vector.rs
+++ b/crates/core_simd/src/vector.rs
@@ -568,7 +568,7 @@ where
 
     /// Conditionally write pointers elementwise into a SIMD vector vector.
     /// The mask `enable`s all `true` lanes and disables all `false` lanes.
-    /// If a lane is disabled, the writing that lane is skipped.
+    /// If a lane is disabled, the write to that lane is skipped.
     ///
     /// # Safety
     ///