Skip to content

Commit 576cd0f

Browse files
committed
fix rustfmt issue in src/callbacks.rs
1 parent 97fed55 commit 576cd0f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/callbacks.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ impl Default for MacroParsingBehavior {
2525

2626
/// A trait to allow configuring different kinds of types in different
2727
/// situations.
28-
pub trait ParseCallbacks: fmt::Debug + UnwindSafe + dyn_clone::DynClone {
28+
pub trait ParseCallbacks:
29+
fmt::Debug + UnwindSafe + dyn_clone::DynClone
30+
{
2931
/// This function will be run on every macro that is identified.
3032
fn will_parse_macro(&self, _name: &str) -> MacroParsingBehavior {
3133
MacroParsingBehavior::Default

0 commit comments

Comments
 (0)