From 9766aa25169926e9167853e254cd3506938c5ee4 Mon Sep 17 00:00:00 2001 From: Arthur van de Vondervoort Date: Sat, 14 Dec 2024 21:27:02 +0100 Subject: [PATCH] Fix typo --- .../Design/Rule0080AnalyzeJsonTokenJPath.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BusinessCentral.LinterCop/Design/Rule0080AnalyzeJsonTokenJPath.cs b/BusinessCentral.LinterCop/Design/Rule0080AnalyzeJsonTokenJPath.cs index 0f71b55..b55e753 100644 --- a/BusinessCentral.LinterCop/Design/Rule0080AnalyzeJsonTokenJPath.cs +++ b/BusinessCentral.LinterCop/Design/Rule0080AnalyzeJsonTokenJPath.cs @@ -48,10 +48,10 @@ public static class DiagnosticDescriptors public static readonly DiagnosticDescriptor Rule0080AnalyzeJsonTokenJPath = new( id: LinterCopAnalyzers.AnalyzerPrefix + "0080", title: LinterCopAnalyzers.GetLocalizableString("Rule0080AnalyzeJsonTokenJPathTitle"), - messageFormat: LinterCopAnalyzers.GetLocalizableString("Rule0080AnalyzePathOnJsonTokenFormat"), + messageFormat: LinterCopAnalyzers.GetLocalizableString("Rule0080AnalyzeJsonTokenJPathFormat"), category: "Design", defaultSeverity: DiagnosticSeverity.Warning, isEnabledByDefault: true, - description: LinterCopAnalyzers.GetLocalizableString("Rule0080AnalyzePathOnJsonTokenDescription"), + description: LinterCopAnalyzers.GetLocalizableString("Rule0080AnalyzeJsonTokenJPathDescription"), helpLinkUri: "https://github.com/StefanMaron/BusinessCentral.LinterCop/wiki/LC0080"); } }