From 15decdbb353a0ca7fa428141eabc1a8c3f8b8e1b Mon Sep 17 00:00:00 2001 From: kim / Motoyuki Kimura Date: Tue, 20 Feb 2024 01:10:02 +0900 Subject: [PATCH] Update tokio/src/task/task_local.rs Co-authored-by: Alice Ryhl --- tokio/src/task/task_local.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tokio/src/task/task_local.rs b/tokio/src/task/task_local.rs index 2313df4295a..7f9713d8898 100644 --- a/tokio/src/task/task_local.rs +++ b/tokio/src/task/task_local.rs @@ -340,8 +340,7 @@ where /// /// The function returns: /// - /// * `Some(T)` if the task local value exists, and unset the task local value - /// in the Future. + /// * `Some(T)` if the task local value exists. /// * `None` if the task local value does not exist. /// /// # Note