Fix type error in lint description (#14466)

Fix #14465

changelog: none
This commit is contained in:
Alejandra González 2025-03-25 12:25:57 +00:00 committed by GitHub
commit f5d81a314a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,7 +71,7 @@ declare_clippy_lint! {
/// ### Example
/// ```no_run
/// let y: i8 = -1;
/// y as u128; // will return 18446744073709551615
/// y as u64; // will return 18446744073709551615
/// ```
#[clippy::version = "pre 1.29.0"]
pub CAST_SIGN_LOSS,