From 60bd685b58b5e8d0ac33b5c4c2be53aa5ae0c4fb Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Tue, 17 May 2022 10:48:42 -0700 Subject: [PATCH] Update tokio/src/task/builder.rs Co-authored-by: Alice Ryhl --- tokio/src/task/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/task/builder.rs b/tokio/src/task/builder.rs index ff3f5954b56..ddb5c430ef1 100644 --- a/tokio/src/task/builder.rs +++ b/tokio/src/task/builder.rs @@ -110,7 +110,7 @@ impl<'a> Builder<'a> { /// Spawns `!Send` a task on the current [`LocalSet`] with this builder's /// settings. /// - /// The spawned future will be run on the same thread that called `spawn_local.` + /// The spawned future will be run on the same thread that called `spawn_local`. /// This may only be called from the context of a [local task set][`LocalSet`]. /// /// # Panics