From c06a55088bd09d49c73aa32cd3fef3ed14778721 Mon Sep 17 00:00:00 2001 From: Bryan Baron Date: Mon, 11 Dec 2023 11:50:24 -0500 Subject: [PATCH] coop: fix typo in docs for `task::unconstrained` (#6212) --- tokio/src/task/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/task/mod.rs b/tokio/src/task/mod.rs index 5dd058433..6b352b16f 100644 --- a/tokio/src/task/mod.rs +++ b/tokio/src/task/mod.rs @@ -283,7 +283,7 @@ //! //! #### unconstrained //! -//! If necessary, [`task::unconstrained`] lets you opt a future out of of Tokio's cooperative +//! If necessary, [`task::unconstrained`] lets you opt a future out of Tokio's cooperative //! scheduling. When a future is wrapped with `unconstrained`, it will never be forced to yield to //! Tokio. For example: //!