Skip to content

Commit

Permalink
Make join! description more accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
EFanZh committed Jan 24, 2022
1 parent 42313dd commit 571356c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/future/join.rs
Expand Up @@ -9,7 +9,7 @@ use crate::task::{Context, Poll};
/// Polls multiple futures simultaneously, returning a tuple
/// of all results once complete.
///
/// While `join!(a, b)` is similar to `(a.await, b.await)`,
/// While `join!(a, b).await` is similar to `(a.await, b.await)`,
/// `join!` polls both futures concurrently and is therefore more efficient.
///
/// # Examples
Expand Down

0 comments on commit 571356c

Please sign in to comment.