From 02d7a49f31e67ddf31247836e90caefa07a84a2a Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 9 Oct 2025 12:49:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(config):=20correct=20grammar?= =?UTF-8?q?=20in=20EolRule=20display?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix grammar error in EolRule display implementation --- src/config/eol_rule.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/eol_rule.rs b/src/config/eol_rule.rs index 44371ea..d787ea5 100644 --- a/src/config/eol_rule.rs +++ b/src/config/eol_rule.rs @@ -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()