Skip to content

Commit

Permalink
s/TypeDeclarationImmutabilityAnalyzer/ImmutabilityAnalyzer (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
omsmith committed Nov 29, 2020
1 parent c4fd0f3 commit 6fc35af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace D2L.CodeStyle.Analyzers.Immutability {
[DiagnosticAnalyzer( LanguageNames.CSharp )]
public sealed class TypeDeclarationImmutabilityAnalyzer : DiagnosticAnalyzer {
public sealed class ImmutabilityAnalyzer : DiagnosticAnalyzer {

public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(
Diagnostics.ArraysAreMutable,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// analyzer: D2L.CodeStyle.Analyzers.Immutability.TypeDeclarationImmutabilityAnalyzer
// analyzer: D2L.CodeStyle.Analyzers.Immutability.ImmutabilityAnalyzer

using System;
using D2L.CodeStyle.Annotations;
Expand Down

0 comments on commit 6fc35af

Please sign in to comment.