From f5c1ff75999ca5f8a37a7874c8ffee15071f1bac Mon Sep 17 00:00:00 2001 From: Clint Frederickson Date: Sun, 21 Aug 2022 13:15:18 -0600 Subject: [PATCH] chore: slight re-wording of unconstrained's module docs (#4928) --- 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 9250af263..f56282ce2 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: //!