Skip to content

Commit e0ba487

Browse files
committed
Format code with latest nightly
1 parent 87f3452 commit e0ba487

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/tower/src/trace_context.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ trait AsInjector {
2121
}
2222

2323
impl<B> AsInjector for Request<B> {
24-
type Injector<'a> = HeaderInjector<'a> where Self: 'a;
24+
type Injector<'a>
25+
= HeaderInjector<'a>
26+
where
27+
Self: 'a;
2528

2629
fn as_injector(&mut self) -> Self::Injector<'_> {
2730
HeaderInjector(self.headers_mut())

0 commit comments

Comments
 (0)