From 22e4bbdf73d4fea2e0454376bbe354e8449a42ab Mon Sep 17 00:00:00 2001 From: dasman <75807342+Dastan-glitch@users.noreply.github.com> Date: Fri, 25 Feb 2022 05:47:21 -0500 Subject: [PATCH] Fix a typo in future/mod.rs --- src/future/future/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/future/future/mod.rs b/src/future/future/mod.rs index 24f3fb59..35651450 100644 --- a/src/future/future/mod.rs +++ b/src/future/future/mod.rs @@ -361,7 +361,7 @@ extension_trait! { #[doc = r#" Waits for both the future and a timeout, if the timeout completes before - the future, it returns an TimeoutError. + the future, it returns a TimeoutError. # Example ```