about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/future/join.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/future/join.rs b/library/core/src/future/join.rs
index a6ffbe07d91..fa4eb0d2f33 100644
--- a/library/core/src/future/join.rs
+++ b/library/core/src/future/join.rs
@@ -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