runtime: fix typo in unhandled_panic (#6660)

This commit is contained in:
Tobias Nießen
2024-06-28 01:10:14 +09:00
committed by GitHub
parent 06582776a5
commit 65d0e08d39
+1 -1
View File
@@ -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.