Skip to content

Commit

Permalink
Fix URL for syslib diagnostics (#92134)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericstj authored Sep 15, 2023
1 parent a751151 commit 5ab45c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static DiagnosticDescriptor Create(
LocalizableString? description = null,
params string[] customTags)
{
string helpLink = $"https://learn.microsoft.com/dotnet/fundamentals/syslib-diagnostics/{id.ToLowerInvariant()}.md";
string helpLink = $"https://learn.microsoft.com/dotnet/fundamentals/syslib-diagnostics/{id.ToLowerInvariant()}";

return new DiagnosticDescriptor(id, title, messageFormat, category, defaultSeverity, isEnabledByDefault, description, helpLink, customTags);
}
Expand Down

0 comments on commit 5ab45c7

Please sign in to comment.