Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jrouaix committed Nov 29, 2024
1 parent 1766a52 commit 75a3c76
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/decoders/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ impl<'a> std::error::Error for DecoderError<'a> {}
impl<'a> std::fmt::Display for DecoderError<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Parse {
message,
..
} => write!(f, "{message}"),
Self::Parse { message, .. } => write!(f, "{message}"),
}
}
}
Expand Down

0 comments on commit 75a3c76

Please sign in to comment.