We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5d700d commit 1b2e471Copy full SHA for 1b2e471
compiler/rustc_lint_defs/src/builtin.rs
@@ -1651,7 +1651,7 @@ declare_lint! {
1651
/// ### Explanation
1652
///
1653
/// Without the `mut`, `x` would have type `&u32`. Pre-2024, adding `mut` makes `x` have type
1654
- /// `u32`, which was deeped surprising. After edition 2024, adding `mut` will not change the
+ /// `u32`, which was deemed surprising. After edition 2024, adding `mut` will not change the
1655
/// type of `x`. This lint warns users of editions before 2024 to update their code.
1656
pub DEREFERENCING_MUT_BINDING,
1657
Allow,
0 commit comments