Skip to content

Commit

Permalink
Merge pull request #948 from bgurney-rh/clippy-1.83
Browse files Browse the repository at this point in the history
Fix Rust 1.83 clippy errors
  • Loading branch information
mulkieran authored Dec 2, 2024
2 parents 8f0a43f + f8f4aef commit 2b7ce00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub enum DevId<'a> {
Uuid(&'a DmUuid),
}

impl<'a> fmt::Display for DevId<'a> {
impl fmt::Display for DevId<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
DevId::Name(name) => write!(f, "{name}"),
Expand Down

0 comments on commit 2b7ce00

Please sign in to comment.