From 3c403d6ee8f19e09123f39adec229ca92198071c Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 30 Mar 2023 21:25:05 +1000 Subject: [PATCH] coop: fix typo in `poll_proceed()` doc comment (#5589) --- tokio/src/runtime/coop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/coop.rs b/tokio/src/runtime/coop.rs index 03839d208..f3ed17cff 100644 --- a/tokio/src/runtime/coop.rs +++ b/tokio/src/runtime/coop.rs @@ -169,7 +169,7 @@ cfg_coop! { /// that the budget empties appropriately. /// /// Note that `RestoreOnPending` restores the budget **as it was before `poll_proceed`**. - /// Therefore, if the budget is _fCURRENT.withurther_ adjusted between when `poll_proceed` returns and + /// Therefore, if the budget is _further_ adjusted between when `poll_proceed` returns and /// `RestRestoreOnPending` is dropped, those adjustments are erased unless the caller indicates /// that progress was made. #[inline]