From f111a65bf2b9c57f82670867c043485415d050be Mon Sep 17 00:00:00 2001 From: Mario Carneiro Date: Thu, 21 Sep 2023 04:17:57 -0400 Subject: [PATCH] Fix 'missing contributor' error message fixes #125 --- src/diag.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diag.rs b/src/diag.rs index 10d7377..a949d64 100644 --- a/src/diag.rs +++ b/src/diag.rs @@ -712,7 +712,7 @@ impl Diagnostic { stmt, *marker, )]), - MissingContributor => ("No contribution comment".into(), vec![( + MissingContributor => ("Missing or malformed contribution comment".into(), vec![( AnnotationType::Warning, "No (Contributed by...) provided for this statement".into(), stmt,