Skip to content

Commit 1b2e471

Browse files
Fix typo
Co-authored-by: Guillaume Boisseau <[email protected]>
1 parent d5d700d commit 1b2e471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_lint_defs/src/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1651,7 +1651,7 @@ declare_lint! {
16511651
/// ### Explanation
16521652
///
16531653
/// 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
1654+
/// `u32`, which was deemed surprising. After edition 2024, adding `mut` will not change the
16551655
/// type of `x`. This lint warns users of editions before 2024 to update their code.
16561656
pub DEREFERENCING_MUT_BINDING,
16571657
Allow,

0 commit comments

Comments
 (0)