We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9627826 commit bf9ee88Copy full SHA for bf9ee88
CHANGELOG.md
@@ -26,7 +26,7 @@ Unzip a stream of tuples into two collections:
26
use async_std::prelude::*;
27
use async_std::stream;
28
29
-let s = stream::from_iter(vec![(1,2), (3,4)]);
+let s = stream::from_iter(vec![(1,2), (3,4)]);
30
31
let (left, right): (Vec<_>, Vec<_>) = s.unzip().await;
32
0 commit comments