📝 docs(config): fix typo in EolRule::describe documentation

- fix typo "peformed" to "performed" in the documentation for the `EolRule::describe` function
This commit is contained in:
Jeremiah Russell
2025-10-11 06:58:32 +01:00
committed by Jeremiah Russell
parent 8003cdd76a
commit c25f925373

View File

@@ -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::<usize>().unwrap();