Skip to content

Commit 932f723

Browse files
committed
Formatting.
1 parent dfe6bfe commit 932f723

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

library/core/src/macros/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ macro_rules! panic {
2929
macro_rules! panic {
3030
// Expands to either `$crate::panic_2015` or `$crate::panic_2021`
3131
// depending on the edition of the caller.
32-
($($arg:tt)*) => { /* compiler built-in */ };
32+
($($arg:tt)*) => {
33+
/* compiler built-in */
34+
};
3335
}
3436

3537
/// Asserts that two expressions are equal to each other (using [`PartialEq`]).

library/std/src/macros.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ macro_rules! panic {
2828
macro_rules! panic {
2929
// Expands to either `$crate::panic_2015` or `$crate::panic_2021`
3030
// depending on the edition of the caller.
31-
($($arg:tt)*) => { /* compiler built-in */ };
31+
($($arg:tt)*) => {
32+
/* compiler built-in */
33+
};
3234
}
3335

3436
/// Prints to the standard output.

0 commit comments

Comments
 (0)