@@ -300,15 +300,15 @@ types! {
300
300
/// 128-bit wide set of eight 'u16' types, x86-specific
301
301
///
302
302
/// 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
304
304
/// implementations.
305
305
pub struct __m128bh( u16 , u16 , u16 , u16 , u16 , u16 , u16 , u16 ) ;
306
306
307
307
/// 256-bit wide set of 16 'u16' types, x86-specific
308
308
///
309
309
/// This type is the same as the `__m128bh` type defined by Intel,
310
310
/// 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
312
312
/// implementations.
313
313
pub struct __m256bh(
314
314
u16 , u16 , u16 , u16 , u16 , u16 , u16 , u16 ,
@@ -319,7 +319,7 @@ types! {
319
319
///
320
320
/// This type is the same as the `__m128bh` type defined by Intel,
321
321
/// 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
323
323
/// implementations.
324
324
pub struct __m512bh(
325
325
u16 , u16 , u16 , u16 , u16 , u16 , u16 , u16 ,
0 commit comments