Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Sep 9, 2024
1 parent 7f3b8b2 commit 2cea1e9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/bin/stellar-strkey/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ pub enum Error {
impl core::fmt::Display for Error {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
match self {
Error::Decode(s, inner) => {
f.write_fmt(format_args!("decoding {s:?}: {inner}"))
}
Error::Decode(s, inner) => f.write_fmt(format_args!("decoding {s:?}: {inner}")),
}
}
}
Expand Down

0 comments on commit 2cea1e9

Please sign in to comment.