Skip to content

Commit 65cb2c9

Browse files
committed
Fix mask alias
1 parent 09fa72a commit 65cb2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/src/masks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ pub type mask16x8 = Mask<i16, 8>;
516516
pub type mask16x16 = Mask<i16, 16>;
517517

518518
/// Vector of 32 16-bit masks
519-
pub type mask16x32 = Mask<i32, 32>;
519+
pub type mask16x32 = Mask<i16, 32>;
520520

521521
/// Vector of two 32-bit masks
522522
pub type mask32x2 = Mask<i32, 2>;

0 commit comments

Comments
 (0)