From c25f92537373178799d39f3821a3dfbc9ba25dd9 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Sat, 11 Oct 2025 06:58:32 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(config):=20fix=20typo=20in?= =?UTF-8?q?=20EolRule::describe=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix typo "peformed" to "performed" in the documentation for the `EolRule::describe` function --- src/config/eol_rule.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/eol_rule.rs b/src/config/eol_rule.rs index eff35a8..6fd6fe1 100644 --- a/src/config/eol_rule.rs +++ b/src/config/eol_rule.rs @@ -105,7 +105,7 @@ impl EolRule { EolAction::parse(&self.action) } - /// Describe the action that will be peformed by the rule and its conditions + /// Describe the action that will be performed by the rule and its conditions pub fn describe(&self) -> String { let count = &self.retention[2..]; let count = count.parse::().unwrap();