Make join!
description more accurate
This commit is contained in:
parent
42313dd29b
commit
571356c24a
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ use crate::task::{Context, Poll};
|
||||||
/// Polls multiple futures simultaneously, returning a tuple
|
/// Polls multiple futures simultaneously, returning a tuple
|
||||||
/// of all results once complete.
|
/// 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.
|
/// `join!` polls both futures concurrently and is therefore more efficient.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
|
|
Loading…
Add table
Reference in a new issue