@@ -452,7 +452,7 @@ mod sealed {
452
452
}
453
453
}
454
454
455
- /// Vector pointwise addition.
455
+ /// Vector element-wise addition.
456
456
#[ inline]
457
457
#[ target_feature( enable = "vector" ) ]
458
458
#[ unstable( feature = "stdarch_s390x" , issue = "135681" ) ]
@@ -463,7 +463,7 @@ where
463
463
a. vec_add ( b)
464
464
}
465
465
466
- /// Vector pointwise subtraction.
466
+ /// Vector element-wise subtraction.
467
467
#[ inline]
468
468
#[ target_feature( enable = "vector" ) ]
469
469
#[ unstable( feature = "stdarch_s390x" , issue = "135681" ) ]
@@ -474,7 +474,7 @@ where
474
474
a. vec_sub ( b)
475
475
}
476
476
477
- /// Vector Multiply
477
+ /// Vector element-wise multiplication.
478
478
///
479
479
/// ## Purpose
480
480
/// Compute the products of corresponding elements of two vectors.
@@ -491,7 +491,7 @@ where
491
491
a. vec_mul ( b)
492
492
}
493
493
494
- /// Vector max .
494
+ /// Vector element-wise maximum .
495
495
#[ inline]
496
496
#[ target_feature( enable = "vector" ) ]
497
497
#[ unstable( feature = "stdarch_s390x" , issue = "135681" ) ]
@@ -502,7 +502,7 @@ where
502
502
a. vec_max ( b)
503
503
}
504
504
505
- /// Vector min .
505
+ /// Vector element-wise minimum .
506
506
#[ inline]
507
507
#[ target_feature( enable = "vector" ) ]
508
508
#[ unstable( feature = "stdarch_s390x" , issue = "135681" ) ]
0 commit comments