Skip to content

Commit

Permalink
removed fmt.rs formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottGibb committed Nov 11, 2024
1 parent f588be1 commit ad352d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,14 +190,14 @@ macro_rules! unwrap {
}
}
};
($arg:expr, $($msg:expr),+ $(,)?) => {
($arg:expr, $($msg:expr),+ $(,)? ) => {
match $crate::fmt::Try::into_result($arg) {
::core::result::Result::Ok(t) => t,
::core::result::Result::Err(e) => {
::core::panic!("unwrap of `{}` failed: {}: {:?}", ::core::stringify!($arg), ::core::format_args!($($msg,)*), e);
}
}
};
}
}

#[derive(Debug, Copy, Clone, Eq, PartialEq)]
Expand Down

0 comments on commit ad352d4

Please sign in to comment.