From ff08e1b53dbea5b3840e7676d0c67cc706a6e709 Mon Sep 17 00:00:00 2001 From: Taliyah Webb Date: Sun, 17 Nov 2024 13:49:23 +0100 Subject: [PATCH] time: fix a typo in instant docs --- 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 ///