Skip to content

Commit 880f898

Browse files
authored
Rollup merge of rust-lang#93256 - EFanZh:patch-1, r=joshtriplett
Make `join!` description more accurate
2 parents fd75132 + 5872d3c commit 880f898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/future/join.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use crate::task::{Context, Poll};
99
/// Polls multiple futures simultaneously, returning a tuple
1010
/// of all results once complete.
1111
///
12-
/// While `join!(a, b)` is similar to `(a.await, b.await)`,
12+
/// While `join!(a, b).await` is similar to `(a.await, b.await)`,
1313
/// `join!` polls both futures concurrently and is therefore more efficient.
1414
///
1515
/// # Examples

0 commit comments

Comments
 (0)