Fix typo stdimd -> stdsimd (#915)

This commit is contained in:
Jubilee 2020-09-18 15:22:12 -07:00 committed by GitHub
parent 6a0969d12f
commit c0d49aec61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -24,7 +24,7 @@ types! {
}
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait v128Ext: Sized {
unsafe fn as_v128(self) -> v128;

View file

@ -324,7 +324,7 @@ mod test;
pub use self::test::*;
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait m128iExt: Sized {
fn as_m128i(self) -> __m128i;
@ -377,7 +377,7 @@ impl m128iExt for __m128i {
}
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait m256iExt: Sized {
fn as_m256i(self) -> __m256i;
@ -430,7 +430,7 @@ impl m256iExt for __m256i {
}
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait m256Ext: Sized {
fn as_m256(self) -> __m256;
@ -448,7 +448,7 @@ impl m256Ext for __m256 {
}
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait m512iExt: Sized {
fn as_m512i(self) -> __m512i;
@ -481,7 +481,7 @@ impl m512iExt for __m512i {
}
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait m512Ext: Sized {
fn as_m512(self) -> __m512;
@ -499,7 +499,7 @@ impl m512Ext for __m512 {
}
#[allow(non_camel_case_types)]
#[unstable(feature = "stdimd_internal", issue = "none")]
#[unstable(feature = "stdsimd_internal", issue = "none")]
pub(crate) trait m512dExt: Sized {
fn as_m512d(self) -> __m512d;