Fix small typo in warning when notify-send fails (#319)

Fix small typo
This commit is contained in:
pwygab
2023-01-28 04:52:20 +08:00
committed by GitHub
parent cba9dc1c2c
commit b4c5efde50

View File

@@ -106,7 +106,7 @@ impl Terminal {
command.args(["-a", "Topgrade", "Topgrade"]); command.args(["-a", "Topgrade", "Topgrade"]);
command.arg(message.as_ref()); command.arg(message.as_ref());
if let Err(err) = command.output_checked() { if let Err(err) = command.output_checked() {
terminal::print_warning("Senfing notification failed with {err:?}"); terminal::print_warning("Sending notification failed with {err:?}");
} }
} }
} }