From 723934242b792fdc89105901640b15e14d2d1535 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Sun, 15 Oct 2023 19:21:57 +0200 Subject: [PATCH] time: reorder comment in sleep.rs (#6076) --- tokio/src/time/sleep.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/time/sleep.rs b/tokio/src/time/sleep.rs index 9809571c5..6ea05699b 100644 --- a/tokio/src/time/sleep.rs +++ b/tokio/src/time/sleep.rs @@ -219,8 +219,8 @@ pin_project! { /// /// [`select!`]: ../macro.select.html /// [`tokio::pin!`]: ../macro.pin.html - // Alias for old name in 0.2 #[project(!Unpin)] + // Alias for old name in 0.2 #[cfg_attr(docsrs, doc(alias = "Delay"))] #[derive(Debug)] #[must_use = "futures do nothing unless you `.await` or poll them"]