forked from mirror/async-std
Fix a typo
This commit is contained in:
parent
9627826756
commit
bf9ee88815
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ Unzip a stream of tuples into two collections:
|
|||
use async_std::prelude::*;
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue