From 53d285ad9aa39a1a63f84f9fc399c8b0d3e6060f Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Thu, 8 Mar 2018 11:27:24 -0500 Subject: [PATCH] Fix unsigned typo --- coresimd/x86/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/coresimd/x86/mod.rs b/coresimd/x86/mod.rs index 700537243c..32915c3329 100644 --- a/coresimd/x86/mod.rs +++ b/coresimd/x86/mod.rs @@ -40,7 +40,7 @@ types! { /// * `i16x4` - four `i16` variables packed together /// * `i32x2` - two `i32` variables packed together /// - /// (as well as unsgined versions). Each intrinsic may interpret the + /// (as well as unsigned versions). Each intrinsic may interpret the /// internal bits differently, check the documentation of the intrinsic /// to see how it's being used. /// @@ -91,7 +91,7 @@ types! { /// * `i32x4` - four `i32` variables packed together /// * `i64x2` - two `i64` variables packed together /// - /// (as well as unsgined versions). Each intrinsic may interpret the + /// (as well as unsigned versions). Each intrinsic may interpret the /// internal bits differently, check the documentation of the intrinsic /// to see how it's being used. /// @@ -227,7 +227,7 @@ types! { /// * `i32x8` - eight `i32` variables packed together /// * `i64x4` - four `i64` variables packed together /// - /// (as well as unsgined versions). Each intrinsic may interpret the + /// (as well as unsigned versions). Each intrinsic may interpret the /// internal bits differently, check the documentation of the intrinsic /// to see how it's being used. ///