Skip to content

Commit bfea84a

Browse files
committed
Adds latest version of relevant files
1 parent 838f752 commit bfea84a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stream/stream/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,11 +1221,11 @@ extension_trait! {
12211221
fn partial_cmp<S>(
12221222
self,
12231223
other: S
1224-
) -> impl Future<Output = Option<Ordering>> + '_ [PartialCmpFuture<Self, S>]
1224+
) -> impl Future<Output = Option<Ordering>> [PartialCmpFuture<Self, S>]
12251225
where
12261226
Self: Sized + Stream,
1227-
S: Stream,
1228-
Self::Item: PartialOrd<S::Item>,
1227+
S: Stream,
1228+
<Self as Stream>::Item: PartialOrd<S::Item>,
12291229
{
12301230
PartialCmpFuture::new(self, other)
12311231
}

0 commit comments

Comments
 (0)