Skip to content

Commit

Permalink
Fix typo in toplevel.rs (#85)
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
wtachau authored Jul 9, 2024
1 parent 43684d8 commit a0a218a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toplevel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl<ErrType: ErrTypeTraits> Toplevel<ErrType> {
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}",)
Expand Down

0 comments on commit a0a218a

Please sign in to comment.