From 39cf6bba0035bbb32fe89bf8ad0189e96fa2d926 Mon Sep 17 00:00:00 2001 From: FabijanC Date: Sat, 15 Jun 2024 21:10:47 +0200 Subject: [PATCH] macros: typo fix in join.rs and try_join.rs (#6641) --- tokio/src/macros/join.rs | 2 +- tokio/src/macros/try_join.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tokio/src/macros/join.rs b/tokio/src/macros/join.rs index 8a0198600..d82fd5cc2 100644 --- a/tokio/src/macros/join.rs +++ b/tokio/src/macros/join.rs @@ -16,7 +16,7 @@ /// /// # Notes /// -/// The supplied futures are stored inline and does not require allocating a +/// The supplied futures are stored inline and do not require allocating a /// `Vec`. /// /// ### Runtime characteristics diff --git a/tokio/src/macros/try_join.rs b/tokio/src/macros/try_join.rs index a72cdb4a8..5c913318e 100644 --- a/tokio/src/macros/try_join.rs +++ b/tokio/src/macros/try_join.rs @@ -14,7 +14,7 @@ /// /// # Notes /// -/// The supplied futures are stored inline and does not require allocating a +/// The supplied futures are stored inline and do not require allocating a /// `Vec`. /// /// ### Runtime characteristics