We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb40e5 commit ddcb68aCopy full SHA for ddcb68a
crates/core_simd/src/vector.rs
@@ -28,7 +28,7 @@ use crate::simd::{
28
/// let zm_add = a0.zip(a1).map(|(lhs, rhs)| lhs + rhs);
29
/// let zm_mul = a0.zip(a1).map(|(lhs, rhs)| lhs * rhs);
30
///
31
-/// // `Simd<T, N>` implements `From<[T; N]>
+/// // `Simd<T, N>` implements `From<[T; N]>`
32
/// let (v0, v1) = (Simd::from(a0), Simd::from(a1));
33
/// // Which means arrays implement `Into<Simd<T, N>>`.
34
/// assert_eq!(v0 + v1, zm_add.into());
0 commit comments