2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-01 22:16:40 +00:00
This commit is contained in:
Fedor Sakharov 2019-10-01 20:07:56 +03:00
parent f4e2302e7e
commit 35ab65fe8e
No known key found for this signature in database
GPG key ID: 93D436E666BF0FEE

View file

@ -960,7 +960,7 @@ extension_trait! {
fn try_for_each<F, E>(
self,
f: F,
) -> impl Future<Output = R> [TryForEeachFuture<Self, F, Self::Item, E>]
) -> impl Future<Output = E> [TryForEeachFuture<Self, F, Self::Item, E>]
where
Self: Sized,
F: FnMut(Self::Item) -> Result<(), E>,