Skip to content

Commit 7c7dbe0

Browse files
Remove unused import
1 parent 789c38f commit 7c7dbe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/src/elements/float.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub trait SimdFloat: Copy + Sealed {
2828
/// # #![feature(portable_simd)]
2929
/// # #[cfg(feature = "as_crate")] use core_simd::simd;
3030
/// # #[cfg(not(feature = "as_crate"))] use core::simd;
31-
/// # use simd::{f32x2, SimdFloat, SimdInt, Simd};
31+
/// # use simd::{SimdFloat, SimdInt, Simd};
3232
/// let floats: Simd<f32, 4> = Simd::from_array([1.9, -4.5, f32::INFINITY, f32::NAN]);
3333
/// let ints = floats.cast::<i32>();
3434
/// assert_eq!(ints, Simd::from_array([1, -4, i32::MAX, 0]));

0 commit comments

Comments
 (0)