Skip to content

Commit ddcb68a

Browse files
committed
Match unmatched backticks in library/
1 parent 3cb40e5 commit ddcb68a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/src/vector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use crate::simd::{
2828
/// let zm_add = a0.zip(a1).map(|(lhs, rhs)| lhs + rhs);
2929
/// let zm_mul = a0.zip(a1).map(|(lhs, rhs)| lhs * rhs);
3030
///
31-
/// // `Simd<T, N>` implements `From<[T; N]>
31+
/// // `Simd<T, N>` implements `From<[T; N]>`
3232
/// let (v0, v1) = (Simd::from(a0), Simd::from(a1));
3333
/// // Which means arrays implement `Into<Simd<T, N>>`.
3434
/// assert_eq!(v0 + v1, zm_add.into());

0 commit comments

Comments
 (0)