🐛 fix(error): correct spelling error in error message

- fix typo "LableNotFoundInMailbox" to "LabelNotFoundInMailbox"
This commit is contained in:
Jeremiah Russell
2025-10-11 06:58:07 +01:00
committed by Jeremiah Russell
parent 3986349c08
commit 8003cdd76a

View File

@@ -23,7 +23,7 @@ pub enum Error {
NoQueryStringCalculated(usize),
/// No label found in the mailbox
#[error("Label {0} not found in the mailbox")]
LableNotFoundInMailbox(String),
LabelNotFoundInMailbox(String),
/// Rule not found for ID
#[error("No rule for id {0}")]
RuleNotFound(usize),