Skip to content

Commit

Permalink
Fix URL for syslib diagnostics (#92160)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric StJohn <ericstj@microsoft.com>
  • Loading branch information
github-actions[bot] and ericstj committed Sep 16, 2023
1 parent 90d54f9 commit 7b32406
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 7b32406

Please sign in to comment.