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.
join!
1 parent f706ac7 commit 5872d3cCopy full SHA for 5872d3c
core/src/future/join.rs
@@ -9,7 +9,7 @@ use crate::task::{Context, Poll};
9
/// Polls multiple futures simultaneously, returning a tuple
10
/// of all results once complete.
11
///
12
-/// While `join!(a, b)` is similar to `(a.await, b.await)`,
+/// While `join!(a, b).await` is similar to `(a.await, b.await)`,
13
/// `join!` polls both futures concurrently and is therefore more efficient.
14
15
/// # Examples
0 commit comments