Skip to content

Commit e2b7b9d

Browse files
authored
Remove locale from diagnostic-ids link (#42830)
1 parent b5d9947 commit e2b7b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compatibility/ApiCompat/Microsoft.DotNet.ApiCompatibility/Logging/SuppressionEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.DotNet.ApiCompatibility.Logging
1414
/// <param name="baselineAllErrors">If true, baselines all errors.</param>
1515
public class SuppressionEngine(string? noWarn = null, bool baselineAllErrors = false) : ISuppressionEngine
1616
{
17-
protected const string DiagnosticIdDocumentationComment = " https://learn.microsoft.com/en-us/dotnet/fundamentals/package-validation/diagnostic-ids ";
17+
protected const string DiagnosticIdDocumentationComment = " https://learn.microsoft.com/dotnet/fundamentals/package-validation/diagnostic-ids ";
1818
private readonly HashSet<Suppression> _baselineSuppressions = [];
1919
private readonly HashSet<Suppression> _suppressions = [];
2020
private readonly HashSet<string> _noWarn = string.IsNullOrEmpty(noWarn) ? [] : new HashSet<string>(noWarn!.Split(';'));

0 commit comments

Comments
 (0)