Skip to content

Commit

Permalink
Make Clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Oct 1, 2023
1 parent 91f13b8 commit e3d869d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/src/dirs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fn path_from_args_type<T>() -> String {
let type_name = type_name::<T>();
let n = type_name
.find("_fuzz")
.unwrap_or_else(|| panic!("unexpected type name: `{}`", type_name));
.unwrap_or_else(|| panic!("unexpected type name: `{type_name}`"));
type_name[..n].to_owned()
}

Expand Down

0 comments on commit e3d869d

Please sign in to comment.