runtime: fix typo in unhandled_panic (#6660)

This commit is contained in:
Tobias Nießen 2024-06-27 18:10:14 +02:00 committed by GitHub
parent 06582776a5
commit 65d0e08d39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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.