2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 02:39:55 +00:00

Fix a typo

This commit is contained in:
Stjepan Glavina 2019-11-27 16:29:29 +01:00
parent 9627826756
commit bf9ee88815

View file

@ -26,7 +26,7 @@ Unzip a stream of tuples into two collections:
use async_std::prelude::*; use async_std::prelude::*;
use async_std::stream; use async_std::stream;
let s = stream::from_iter(vec![(1,2), (3,4)]); let s = stream::from_iter(vec![(1,2), (3,4)]);
let (left, right): (Vec<_>, Vec<_>) = s.unzip().await; let (left, right): (Vec<_>, Vec<_>) = s.unzip().await;