Skip to content

Commit ecdd960

Browse files
committed
clippy fix
1 parent 84ef954 commit ecdd960

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub struct ErrorReport {
2222
impl From<std::io::Error> for ErrorReport {
2323
fn from(value: std::io::Error) -> Self {
2424
ErrorReport {
25-
message: format!("I/O error: {:#}", value),
25+
message: format!("I/O error: {value:#?}"),
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)