fix various comment typos

This commit is contained in:
Joel Natividad 2024-04-10 08:37:02 -04:00
parent 62fd1d5377
commit e5b6d433fb
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ declare_clippy_lint! {
/// `std::<float>::EPSILON`, etc.
///
/// ### Why is this bad?
/// All of these have been superceded by the associated constants on their respective types,
/// All of these have been superseded by the associated constants on their respective types,
/// such as `i128::MAX`. These legacy items may be deprecated in a future version of rust.
///
/// ### Example