From d08578fc9a950c8ee0ef242dbce0fcaaed5e853f Mon Sep 17 00:00:00 2001 From: Taliyah Webb Date: Wed, 20 Nov 2024 13:02:55 +0100 Subject: [PATCH] time: fix a typo in `Instant` docs (#6982) --- tokio/src/time/instant.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/time/instant.rs b/tokio/src/time/instant.rs index 14cf6e567b5..44955dc9878 100644 --- a/tokio/src/time/instant.rs +++ b/tokio/src/time/instant.rs @@ -116,7 +116,7 @@ impl Instant { } /// Returns the amount of time elapsed since this instant was created, - /// or zero duration if that this instant is in the future. + /// or zero duration if this instant is in the future. /// /// # Examples ///