Skip to content

Commit 435f54a

Browse files
tomakaAmanieu
authored andcommitted
Fix "it's purpose" -> "its purpose"
1 parent b514ed5 commit 435f54a

File tree

1 file changed

+3
-3
lines changed
  • crates/core_arch/src/x86

1 file changed

+3
-3
lines changed

crates/core_arch/src/x86/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,15 +300,15 @@ types! {
300300
/// 128-bit wide set of eight 'u16' types, x86-specific
301301
///
302302
/// This type is representing a 128-bit SIMD register which internally is consisted of
303-
/// eight packed `u16` instances. It's purpose is for bf16 related intrinsic
303+
/// eight packed `u16` instances. Its purpose is for bf16 related intrinsic
304304
/// implementations.
305305
pub struct __m128bh(u16, u16, u16, u16, u16, u16, u16, u16);
306306

307307
/// 256-bit wide set of 16 'u16' types, x86-specific
308308
///
309309
/// This type is the same as the `__m128bh` type defined by Intel,
310310
/// representing a 256-bit SIMD register which internally is consisted of
311-
/// 16 packed `u16` instances. It's purpose is for bf16 related intrinsic
311+
/// 16 packed `u16` instances. Its purpose is for bf16 related intrinsic
312312
/// implementations.
313313
pub struct __m256bh(
314314
u16, u16, u16, u16, u16, u16, u16, u16,
@@ -319,7 +319,7 @@ types! {
319319
///
320320
/// This type is the same as the `__m128bh` type defined by Intel,
321321
/// representing a 512-bit SIMD register which internally is consisted of
322-
/// 32 packed `u16` instances. It's purpose is for bf16 related intrinsic
322+
/// 32 packed `u16` instances. Its purpose is for bf16 related intrinsic
323323
/// implementations.
324324
pub struct __m512bh(
325325
u16, u16, u16, u16, u16, u16, u16, u16,

0 commit comments

Comments
 (0)