diff options
| author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2021-08-14 12:16:18 +0200 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2021-08-14 17:44:03 +0100 |
| commit | 78bef173f4760b76a6bb34a5ed926da4daae507f (patch) | |
| tree | ef49849f61894ae2af6de9a3ed35b36e7aefe13e /library/stdarch/crates | |
| parent | 103e90de1dcbdfb486acb7f0c5e7f06491c0d7b6 (diff) | |
| download | rust-78bef173f4760b76a6bb34a5ed926da4daae507f.tar.gz rust-78bef173f4760b76a6bb34a5ed926da4daae507f.zip | |
Fix "it's purpose" -> "its purpose"
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 5f3f2e97cfe..547bfe67d75 100644 --- a/library/stdarch/crates/core_arch/src/x86/mod.rs +++ b/library/stdarch/crates/core_arch/src/x86/mod.rs @@ -300,7 +300,7 @@ types! { /// 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. It's purpose is for bf16 related intrinsic + /// eight packed `u16` instances. Its purpose is for bf16 related intrinsic /// implementations. pub struct __m128bh(u16, u16, u16, u16, u16, u16, u16, u16); @@ -308,7 +308,7 @@ types! { /// /// This type is the same as the `__m128bh` type defined by Intel, /// representing a 256-bit SIMD register which internally is consisted of - /// 16 packed `u16` instances. It's purpose is for bf16 related intrinsic + /// 16 packed `u16` instances. Its purpose is for bf16 related intrinsic /// implementations. pub struct __m256bh( u16, u16, u16, u16, u16, u16, u16, u16, @@ -319,7 +319,7 @@ types! { /// /// This type is the same as the `__m128bh` type defined by Intel, /// representing a 512-bit SIMD register which internally is consisted of - /// 32 packed `u16` instances. It's purpose is for bf16 related intrinsic + /// 32 packed `u16` instances. Its purpose is for bf16 related intrinsic /// implementations. pub struct __m512bh( u16, u16, u16, u16, u16, u16, u16, u16, |
