From 8a92599271daafcb26d0444005dce46f8ab0aae9 Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Tue, 8 Oct 2024 14:55:09 +0200 Subject: [PATCH] fix(cli): typo `desc` to `scope` in scope related rules (#362) Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com> --- src/rule/scope_format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rule/scope_format.rs b/src/rule/scope_format.rs index d0b0959..ca2abd6 100644 --- a/src/rule/scope_format.rs +++ b/src/rule/scope_format.rs @@ -44,7 +44,7 @@ impl Rule for ScopeFormat { None => { return Some(Violation { level: self.level.unwrap_or(Self::LEVEL), - message: "found no description".to_string(), + message: "found no scope".to_string(), }); } Some(description) => {