From 1ea444b1f7e0b4a3178f11aaf66b589f08dd28b3 Mon Sep 17 00:00:00 2001 From: Clint Frederickson Date: Sat, 20 Aug 2022 10:37:24 -0600 Subject: [PATCH] Slight re-wording of unconstrained's module docs --- 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 9250af26322..f56282ce201 100644 --- a/tokio/src/task/mod.rs +++ b/tokio/src/task/mod.rs @@ -243,7 +243,7 @@ //! //! #### unconstrained //! -//! If necessary, [`task::unconstrained`] lets you opt out a future of Tokio's cooperative +//! If necessary, [`task::unconstrained`] lets you opt a future out of of Tokio's cooperative //! scheduling. When a future is wrapped with `unconstrained`, it will never be forced to yield to //! Tokio. For example: //!