From 65d0e08d39f06eba88661d3d6de665b14588f30d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 27 Jun 2024 18:10:14 +0200 Subject: [PATCH] runtime: fix typo in unhandled_panic (#6660) --- tokio/src/runtime/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/builder.rs b/tokio/src/runtime/builder.rs index 519c7d014..16be77098 100644 --- a/tokio/src/runtime/builder.rs +++ b/tokio/src/runtime/builder.rs @@ -816,7 +816,7 @@ impl Builder { /// /// By default, an unhandled panic (i.e. a panic not caught by /// [`std::panic::catch_unwind`]) has no impact on the runtime's - /// execution. The panic is error value is forwarded to the task's + /// execution. The panic's error value is forwarded to the task's /// [`JoinHandle`] and all other spawned tasks continue running. /// /// The `unhandled_panic` option enables configuring this behavior.