Skip to content

Commit af22cd6

Browse files
committed
Fix typo
1 parent e426d39 commit af22cd6

File tree

1 file changed

+2
-2
lines changed
  • library/portable-simd/crates/core_simd/src

1 file changed

+2
-2
lines changed

library/portable-simd/crates/core_simd/src/vector.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,14 +1196,14 @@ impl Sealed for f16 {}
11961196

11971197
// Safety: f16 is a valid SIMD element type, and is supported by this API
11981198
unsafe impl SimdElement for f16 {
1199-
type Mask = id16;
1199+
type Mask = i16;
12001200
}
12011201

12021202
impl Sealed for f32 {}
12031203

12041204
// Safety: f32 is a valid SIMD element type, and is supported by this API
12051205
unsafe impl SimdElement for f32 {
1206-
type Mask = i32;
1206+
type Mask = i32
12071207
}
12081208

12091209
impl Sealed for f64 {}

0 commit comments

Comments
 (0)