@@ -35,7 +35,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
3535 defaultSeverity : DiagnosticSeverity . Warning ,
3636 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
3737 description : new LocalizableResourceString ( nameof ( RoslynDiagnosticsResources . DeclarePublicApiDescription ) , RoslynDiagnosticsResources . ResourceManager , typeof ( RoslynDiagnosticsResources ) ) ,
38- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . DeclarePublicApiRuleId } .md",
38+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . DeclarePublicApiRuleId } .md",
3939 customTags : new string [ 0 ] ) ;
4040
4141 internal static readonly DiagnosticDescriptor RemoveDeletedApiRule = new DiagnosticDescriptor (
@@ -46,7 +46,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
4646 defaultSeverity : DiagnosticSeverity . Warning ,
4747 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
4848 description : new LocalizableResourceString ( nameof ( RoslynDiagnosticsResources . RemoveDeletedApiDescription ) , RoslynDiagnosticsResources . ResourceManager , typeof ( RoslynDiagnosticsResources ) ) ,
49- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . RemoveDeletedApiRuleId } .md",
49+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . RemoveDeletedApiRuleId } .md",
5050 customTags : new string [ 0 ] ) ;
5151
5252 internal static readonly DiagnosticDescriptor ExposedNoninstantiableType = new DiagnosticDescriptor (
@@ -57,7 +57,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
5757 defaultSeverity : DiagnosticSeverity . Warning ,
5858 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
5959 description : new LocalizableResourceString ( nameof ( RoslynDiagnosticsResources . ExposedNoninstantiableTypeDescription ) , RoslynDiagnosticsResources . ResourceManager , typeof ( RoslynDiagnosticsResources ) ) ,
60- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . ExposedNoninstantiableTypeRuleId } .md",
60+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . ExposedNoninstantiableTypeRuleId } .md",
6161 customTags : new string [ 0 ] ) ;
6262
6363 internal static readonly DiagnosticDescriptor PublicApiFilesInvalid = new DiagnosticDescriptor (
@@ -67,7 +67,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
6767 category : AnalyzerCategory . ApiDesign ,
6868 defaultSeverity : DiagnosticSeverity . Warning ,
6969 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
70- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . PublicApiFilesInvalid } .md",
70+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . PublicApiFilesInvalid } .md",
7171 customTags : new string [ 0 ] ) ;
7272
7373 internal static readonly DiagnosticDescriptor DuplicateSymbolInApiFiles = new DiagnosticDescriptor (
@@ -77,7 +77,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
7777 category : AnalyzerCategory . ApiDesign ,
7878 defaultSeverity : DiagnosticSeverity . Warning ,
7979 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
80- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . DuplicatedSymbolInPublicApiFiles } .md",
80+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . DuplicatedSymbolInPublicApiFiles } .md",
8181 customTags : new string [ 0 ] ) ;
8282
8383 internal static readonly DiagnosticDescriptor AvoidMultipleOverloadsWithOptionalParameters = new DiagnosticDescriptor (
@@ -87,7 +87,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
8787 category : AnalyzerCategory . ApiDesign ,
8888 defaultSeverity : DiagnosticSeverity . Warning ,
8989 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
90- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . AvoidMultipleOverloadsWithOptionalParameters } .md",
90+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . AvoidMultipleOverloadsWithOptionalParameters } .md",
9191 customTags : new string [ 0 ] ) ;
9292
9393 internal static readonly DiagnosticDescriptor OverloadWithOptionalParametersShouldHaveMostParameters = new DiagnosticDescriptor (
@@ -97,7 +97,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
9797 category : AnalyzerCategory . ApiDesign ,
9898 defaultSeverity : DiagnosticSeverity . Warning ,
9999 isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
100- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . OverloadWithOptionalParametersShouldHaveMostParameters } .md",
100+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . OverloadWithOptionalParametersShouldHaveMostParameters } .md",
101101 customTags : new string [ 0 ] ) ;
102102
103103 internal static readonly SymbolDisplayFormat ShortSymbolNameFormat =
0 commit comments