Skip to content

Commit 91b8c01

Browse files
committed
rustfmt
1 parent ea80029 commit 91b8c01

File tree

1 file changed

+4
-1
lines changed
  • embedded-nal-async/src/stack

1 file changed

+4
-1
lines changed

embedded-nal-async/src/stack/tcp.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ pub trait TcpConnect {
2424
impl<T: TcpConnect> TcpConnect for &T {
2525
type Error = T::Error;
2626

27-
type Connection<'a> = T::Connection<'a> where Self: 'a;
27+
type Connection<'a>
28+
= T::Connection<'a>
29+
where
30+
Self: 'a;
2831

2932
async fn connect<'a>(
3033
&'a self,

0 commit comments

Comments
 (0)