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::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;