summaryrefslogtreecommitdiff
path: root/library/portable-simd
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2023-03-03 02:35:10 +0100
committerest31 <MTest31@outlook.com>2023-03-03 03:03:29 +0100
commit999405059c817f7d40b59e715c4cb9c3fa650406 (patch)
treeeb4a62e13d10974ede99796e4a3297269bff2fe9 /library/portable-simd
parent13471d3b2046cce78181dde6cfc146c09f55e29e (diff)
downloadrust-999405059c817f7d40b59e715c4cb9c3fa650406.tar.gz
Match unmatched backticks in library/
Diffstat (limited to 'library/portable-simd')
-rw-r--r--library/portable-simd/crates/core_simd/src/vector.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/portable-simd/crates/core_simd/src/vector.rs b/library/portable-simd/crates/core_simd/src/vector.rs
index 78f56402eba..d52d1ac4d3a 100644
--- a/library/portable-simd/crates/core_simd/src/vector.rs
+++ b/library/portable-simd/crates/core_simd/src/vector.rs
@@ -28,7 +28,7 @@ use crate::simd::{
/// let zm_add = a0.zip(a1).map(|(lhs, rhs)| lhs + rhs);
/// let zm_mul = a0.zip(a1).map(|(lhs, rhs)| lhs * rhs);
///
-/// // `Simd<T, N>` implements `From<[T; N]>
+/// // `Simd<T, N>` implements `From<[T; N]>`
/// let (v0, v1) = (Simd::from(a0), Simd::from(a1));
/// // Which means arrays implement `Into<Simd<T, N>>`.
/// assert_eq!(v0 + v1, zm_add.into());