We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b44689 commit f170b77Copy full SHA for f170b77
compiler/rustc_lint_defs/src/builtin.rs
@@ -1650,7 +1650,7 @@ declare_lint! {
1650
/// ### Explanation
1651
///
1652
/// Without the `mut`, `x` would have type `&u32`. Pre-2024, adding `mut` makes `x` have type
1653
- /// `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
1654
/// type of `x`. This lint warns users of editions before 2024 to update their code.
1655
pub DEREFERENCING_MUT_BINDING,
1656
Allow,
0 commit comments