From a0a218a09ba8781eabdfcb5e5dc5783819ad80b5 Mon Sep 17 00:00:00 2001 From: Will Tachau Date: Tue, 9 Jul 2024 15:52:51 -0700 Subject: [PATCH] Fix typo in toplevel.rs (#85) Fix typo --- src/toplevel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/toplevel.rs b/src/toplevel.rs index 0271e71..9e7b4c1 100644 --- a/src/toplevel.rs +++ b/src/toplevel.rs @@ -67,7 +67,7 @@ impl Toplevel { let root_handle = subsystem::root_handle(move |e| { match &e { SubsystemError::Panicked(name) => { - tracing::error!("Uncaught panic from subsytem '{name}'.") + tracing::error!("Uncaught panic from subsystem '{name}'.") } SubsystemError::Failed(name, e) => { tracing::error!("Uncaught error from subsystem '{name}': {e}",)