diff options
| author | zica <59327276+zica87@users.noreply.github.com> | 2023-08-13 00:08:08 +0800 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2023-08-13 10:55:01 +0200 |
| commit | 9a991c7a6738f263853f8473466cb232486f1234 (patch) | |
| tree | 5157c423f596d7d66ba4aa727f583ecd1b94d2e5 /library/stdarch/crates | |
| parent | b781d20dc83f95e8b86981d3aee278a0d605eabe (diff) | |
| download | rust-9a991c7a6738f263853f8473466cb232486f1234.tar.gz rust-9a991c7a6738f263853f8473466cb232486f1234.zip | |
Fix typo
Diffstat (limited to 'library/stdarch/crates')
| -rw-r--r-- | library/stdarch/crates/core_arch/src/x86/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/stdarch/crates/core_arch/src/x86/mod.rs b/library/stdarch/crates/core_arch/src/x86/mod.rs index ee8b7e75dcd..c5e457ae71a 100644 --- a/library/stdarch/crates/core_arch/src/x86/mod.rs +++ b/library/stdarch/crates/core_arch/src/x86/mod.rs @@ -300,14 +300,14 @@ types! { #[stable(feature = "simd_avx512_types", since = "CURRENT_RUSTC_VERSION")] pub struct __m512d(f64, f64, f64, f64, f64, f64, f64, f64); - /// 128-bit wide set of eight 'u16' types, x86-specific + /// 128-bit wide set of eight `u16` types, x86-specific /// /// This type is representing a 128-bit SIMD register which internally is consisted of /// eight packed `u16` instances. Its purpose is for bf16 related intrinsic /// implementations. pub struct __m128bh(u16, u16, u16, u16, u16, u16, u16, u16); - /// 256-bit wide set of 16 'u16' types, x86-specific + /// 256-bit wide set of 16 `u16` types, x86-specific /// /// This type is the same as the `__m256bh` type defined by Intel, /// representing a 256-bit SIMD register which internally is consisted of @@ -318,7 +318,7 @@ types! { u16, u16, u16, u16, u16, u16, u16, u16 ); - /// 512-bit wide set of 32 'u16' types, x86-specific + /// 512-bit wide set of 32 `u16` types, x86-specific /// /// This type is the same as the `__m512bh` type defined by Intel, /// representing a 512-bit SIMD register which internally is consisted of |
