Skip to content

Commit

Permalink
some doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Jan 21, 2025
1 parent e3e14c7 commit 8f1a215
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/core_arch/src/s390x/vector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ mod sealed {
}
}

/// Vector pointwise addition.
/// Vector element-wise addition.
#[inline]
#[target_feature(enable = "vector")]
#[unstable(feature = "stdarch_s390x", issue = "135681")]
Expand All @@ -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")]
Expand All @@ -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.
Expand All @@ -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")]
Expand All @@ -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")]
Expand Down

0 comments on commit 8f1a215

Please sign in to comment.