Skip to content

Commit

Permalink
Fix spelling of 'panicked' (#65)
Browse files Browse the repository at this point in the history
* Fix spelling of 'panicked'
  • Loading branch information
AldaronLau committed Jul 20, 2022
1 parent 2243d0d commit b3e11c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/platform/linux/x11.rs
Expand Up @@ -930,9 +930,12 @@ impl Drop for Clipboard {
message = None;
}
if let Some(message) = message {
error!("The clipboard server thread paniced. Panic message: '{}'", message);
error!(
"The clipboard server thread panicked. Panic message: '{}'",
message,
);
} else {
error!("The clipboard server thread paniced.");
error!("The clipboard server thread panicked.");
}
}
}
Expand Down

0 comments on commit b3e11c6

Please sign in to comment.