From 469b43de6aee2fe69d7961260685ae147ddb7ec0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Thu, 11 Feb 2021 10:30:48 +0100 Subject: [PATCH] time: fix typo in Sleep doc (#3515) --- tokio/src/time/driver/sleep.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/time/driver/sleep.rs b/tokio/src/time/driver/sleep.rs index 2438f1434..ef1c72127 100644 --- a/tokio/src/time/driver/sleep.rs +++ b/tokio/src/time/driver/sleep.rs @@ -185,7 +185,7 @@ impl Sleep { /// completed. /// /// To call this method, you will usually combine the call with - /// [`Pin::as_mut`], which lets you call the method with consuming the + /// [`Pin::as_mut`], which lets you call the method without consuming the /// `Sleep` itself. /// /// # Example