Skip to content

Commit f1b64a3

Browse files
committed
formatting
1 parent b9536f8 commit f1b64a3

File tree

1 file changed

+3
-4
lines changed
  • crates/proc-macro-srv/src

1 file changed

+3
-4
lines changed

crates/proc-macro-srv/src/lib.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,9 @@ impl ProcMacroSrv {
7777
.expand(&task.macro_name, &macro_body, attributes.as_ref())
7878
.map(|it| FlatTree::new(&it))
7979
}) {
80-
Ok(handle) => handle.join(),
81-
Err(e) => std::panic::resume_unwind(Box::new(e))
82-
};
83-
80+
Ok(handle) => handle.join(),
81+
Err(e) => std::panic::resume_unwind(Box::new(e)),
82+
};
8483

8584
match res {
8685
Ok(res) => res,

0 commit comments

Comments
 (0)