From 8003cdd76a703424a72a715b2d1b0cc039335c18 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Sat, 11 Oct 2025 06:58:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(error):=20correct=20spelling?= =?UTF-8?q?=20error=20in=20error=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix typo "LableNotFoundInMailbox" to "LabelNotFoundInMailbox" --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index ccc95f4..d43e3ee 100644 --- a/src/error.rs +++ b/src/error.rs @@ -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),