🐛 fix(config): correct grammar in EolRule display

- fix grammar error in EolRule display implementation
This commit is contained in:
Jeremiah Russell
2025-10-09 12:49:06 +01:00
committed by Jeremiah Russell
parent ae27ad73f3
commit 02d7a49f31

View File

@@ -33,14 +33,14 @@ impl fmt::Display for EolRule {
}
let action = match self.action.to_lowercase().as_str() {
"trash" => "moves the message to trash",
"delete" => "deletes the message",
"trash" => "move the message to trash",
"delete" => "delete the message",
_ => unreachable!(),
};
write!(
f,
"Rule #{} is active on {} and {action} is {count} {period} old.",
"Rule #{} is active on `{}` to {action} if it is more than {count} {period} old.",
self.id,
self.labels
.iter()