Skip to content

Commit 8f1a215

Browse files
committed
some doc changes
1 parent e3e14c7 commit 8f1a215

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: crates/core_arch/src/s390x/vector.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ mod sealed {
452452
}
453453
}
454454

455-
/// Vector pointwise addition.
455+
/// Vector element-wise addition.
456456
#[inline]
457457
#[target_feature(enable = "vector")]
458458
#[unstable(feature = "stdarch_s390x", issue = "135681")]
@@ -463,7 +463,7 @@ where
463463
a.vec_add(b)
464464
}
465465

466-
/// Vector pointwise subtraction.
466+
/// Vector element-wise subtraction.
467467
#[inline]
468468
#[target_feature(enable = "vector")]
469469
#[unstable(feature = "stdarch_s390x", issue = "135681")]
@@ -474,7 +474,7 @@ where
474474
a.vec_sub(b)
475475
}
476476

477-
/// Vector Multiply
477+
/// Vector element-wise multiplication.
478478
///
479479
/// ## Purpose
480480
/// Compute the products of corresponding elements of two vectors.
@@ -491,7 +491,7 @@ where
491491
a.vec_mul(b)
492492
}
493493

494-
/// Vector max.
494+
/// Vector element-wise maximum.
495495
#[inline]
496496
#[target_feature(enable = "vector")]
497497
#[unstable(feature = "stdarch_s390x", issue = "135681")]
@@ -502,7 +502,7 @@ where
502502
a.vec_max(b)
503503
}
504504

505-
/// Vector min.
505+
/// Vector element-wise minimum.
506506
#[inline]
507507
#[target_feature(enable = "vector")]
508508
#[unstable(feature = "stdarch_s390x", issue = "135681")]

0 commit comments

Comments
 (0)