diff options
| author | Yang Hau <yuanyanghau@gmail.com> | 2023-01-23 11:00:35 +0700 |
|---|---|---|
| committer | Yang Hau <yuanyanghau@gmail.com> | 2023-01-23 11:00:35 +0700 |
| commit | e3ef226f7b33e7257d0e549046bed44cabfd5585 (patch) | |
| tree | ad6356357faa52ddb2c7d9df71abfd65d49bd41a | |
| parent | 582239ac3b32007613df04d7ffa78dc30f4c5645 (diff) | |
| download | rust-e3ef226f7b33e7257d0e549046bed44cabfd5585.tar.gz rust-e3ef226f7b33e7257d0e549046bed44cabfd5585.zip | |
Fix the typo
| -rw-r--r-- | crates/core_simd/src/masks/to_bitmask.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/masks/to_bitmask.rs b/crates/core_simd/src/masks/to_bitmask.rs index 46914dfe0d9..fc7d6b781f2 100644 --- a/crates/core_simd/src/masks/to_bitmask.rs +++ b/crates/core_simd/src/masks/to_bitmask.rs @@ -72,7 +72,7 @@ impl_integer_intrinsic! { impl ToBitMask<BitMask=u64> for Mask<_, 64> } -/// Returns the minimum numnber of bytes in a bitmask with `lanes` lanes. +/// Returns the minimum number of bytes in a bitmask with `lanes` lanes. #[cfg(feature = "generic_const_exprs")] pub const fn bitmask_len(lanes: usize) -> usize { (lanes + 7) / 8 |
