We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a00e130 + 571356c commit 6e2593dCopy full SHA for 6e2593d
library/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