Skip to content

Commit f170b77

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_lint_defs/src/builtin.rs

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

0 commit comments

Comments
 (0)