From 8f1a2150e892d1cf28da626489097d0eed7e449f Mon Sep 17 00:00:00 2001 From: Folkert de Vries Date: Tue, 21 Jan 2025 11:46:02 +0100 Subject: [PATCH] some doc changes --- crates/core_arch/src/s390x/vector.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/core_arch/src/s390x/vector.rs b/crates/core_arch/src/s390x/vector.rs index 25c8fe541d..56996cef5c 100644 --- a/crates/core_arch/src/s390x/vector.rs +++ b/crates/core_arch/src/s390x/vector.rs @@ -452,7 +452,7 @@ mod sealed { } } -/// Vector pointwise addition. +/// Vector element-wise addition. #[inline] #[target_feature(enable = "vector")] #[unstable(feature = "stdarch_s390x", issue = "135681")] @@ -463,7 +463,7 @@ where a.vec_add(b) } -/// Vector pointwise subtraction. +/// Vector element-wise subtraction. #[inline] #[target_feature(enable = "vector")] #[unstable(feature = "stdarch_s390x", issue = "135681")] @@ -474,7 +474,7 @@ where a.vec_sub(b) } -/// Vector Multiply +/// Vector element-wise multiplication. /// /// ## Purpose /// Compute the products of corresponding elements of two vectors. @@ -491,7 +491,7 @@ where a.vec_mul(b) } -/// Vector max. +/// Vector element-wise maximum. #[inline] #[target_feature(enable = "vector")] #[unstable(feature = "stdarch_s390x", issue = "135681")] @@ -502,7 +502,7 @@ where a.vec_max(b) } -/// Vector min. +/// Vector element-wise minimum. #[inline] #[target_feature(enable = "vector")] #[unstable(feature = "stdarch_s390x", issue = "135681")]