diff options
| author | Ralf Jung <post@ralfj.de> | 2022-07-20 10:39:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-20 10:39:21 -0400 |
| commit | 2d1c683112f6bacb0dbc06379d7b1d40a93d0523 (patch) | |
| tree | 46ed14f90f562c49e4e0cd61cb7427e99a27e7b8 /library/core/src/array/equality.rs | |
| parent | 5848c27c7995eabe0db76eb7c1360c77e9fefba4 (diff) | |
| download | rust-2d1c683112f6bacb0dbc06379d7b1d40a93d0523.tar.gz rust-2d1c683112f6bacb0dbc06379d7b1d40a93d0523.zip | |
fix typo
Co-authored-by: Marco Colombo <mar.colombo13@gmail.com>
Diffstat (limited to 'library/core/src/array/equality.rs')
| -rw-r--r-- | library/core/src/array/equality.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/equality.rs b/library/core/src/array/equality.rs index a85f13a4b9e..97300adb009 100644 --- a/library/core/src/array/equality.rs +++ b/library/core/src/array/equality.rs @@ -173,7 +173,7 @@ macro_rules! is_raw_eq_comparable { )+}; } -// SAFETY: All the ordinary integer types have no padding, and are no poointers. +// SAFETY: All the ordinary integer types have no padding, and are no pointers. is_raw_eq_comparable!(u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128, isize); // SAFETY: bool and char have *niches*, but no *padding* (and these are not pointer types), so this |
