Skip to content

Commit 1a7aa4c

Browse files
committed
cargo fmt
1 parent 338d167 commit 1a7aa4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stream/stream/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1290,14 +1290,14 @@ extension_trait! {
12901290
fn ge<S>(
12911291
self,
12921292
other: S
1293-
) -> impl Future<Output = bool> + '_ [GeFuture<Self, S>]
1293+
) -> impl Future<Output = bool> + '_ [GeFuture<Self, S>]
12941294
where
12951295
Self: Sized + Stream,
1296-
S: Stream,
1296+
S: Stream,
12971297
Self::Item: PartialOrd<S::Item>,
12981298
{
12991299
GeFuture::new(self, other)
1300-
}
1300+
}
13011301
}
13021302

13031303
impl<S: Stream + Unpin + ?Sized> Stream for Box<S> {

0 commit comments

Comments
 (0)