Skip to content

Commit

Permalink
Update name of unwrap_or_else_default clippy lint
Browse files Browse the repository at this point in the history
    warning: lint `clippy::unwrap_or_else_default` has been renamed to `clippy::unwrap_or_default`
       --> src/lib.rs:132:5
        |
    132 |     clippy::unwrap_or_else_default
        |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::unwrap_or_default`
        |
        = note: `#[warn(renamed_and_removed_lints)]` on by default
  • Loading branch information
dtolnay committed Aug 2, 2023
1 parent dff0b6f commit 090b32d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
clippy::type_complexity,
clippy::uninlined_format_args,
clippy::unnecessary_box_returns,
clippy::unwrap_or_else_default
clippy::unwrap_or_default
)]

mod de;
Expand Down

0 comments on commit 090b32d

Please sign in to comment.