diff --git a/src/NetAnalyzers/CSharp/Microsoft.NetCore.Analyzers/Performance/CSharpDoNotUseCountWhenAnyCanBeUsed.Fixer.cs b/src/NetAnalyzers/CSharp/Microsoft.NetCore.Analyzers/Performance/CSharpDoNotUseCountWhenAnyCanBeUsed.Fixer.cs index 02c26cba9d..93daf19afb 100644 --- a/src/NetAnalyzers/CSharp/Microsoft.NetCore.Analyzers/Performance/CSharpDoNotUseCountWhenAnyCanBeUsed.Fixer.cs +++ b/src/NetAnalyzers/CSharp/Microsoft.NetCore.Analyzers/Performance/CSharpDoNotUseCountWhenAnyCanBeUsed.Fixer.cs @@ -18,7 +18,7 @@ namespace Microsoft.NetCore.CSharp.Analyzers.Performance public sealed class CSharpDoNotUseCountWhenAnyCanBeUsedFixer : DoNotUseCountWhenAnyCanBeUsedFixer { /// - /// Tries the get a fixer the specified . + /// Tries to get a fixer for the specified . /// /// The node to get a fixer for. /// The operation to get the fixer from. @@ -26,7 +26,6 @@ public sealed class CSharpDoNotUseCountWhenAnyCanBeUsedFixer : DoNotUseCountWhen /// If this method returns , contains the expression to be used to invoke Any. /// If this method returns , contains the arguments from Any to be used on Count. /// if a fixer was found., otherwise. - /// protected override bool TryGetFixer( SyntaxNode node, string operation, diff --git a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/Performance/DoNotUseCountWhenAnyCanBeUsed.Fixer.cs b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/Performance/DoNotUseCountWhenAnyCanBeUsed.Fixer.cs index 18d60e5fe0..497184db9d 100644 --- a/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/Performance/DoNotUseCountWhenAnyCanBeUsed.Fixer.cs +++ b/src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/Performance/DoNotUseCountWhenAnyCanBeUsed.Fixer.cs @@ -70,7 +70,7 @@ public sealed override async Task RegisterCodeFixesAsync(CodeFixContext context) } /// - /// Tries the get a fixer the specified . + /// Tries to get a fixer for the specified . /// /// The node to get a fixer for. /// The operation to get the fixer from. diff --git a/src/NetAnalyzers/VisualBasic/Microsoft.NetCore.Analyzers/Performance/BasicDoNotUseCountWhenAnyCanBeUsedFixer.vb b/src/NetAnalyzers/VisualBasic/Microsoft.NetCore.Analyzers/Performance/BasicDoNotUseCountWhenAnyCanBeUsedFixer.vb index ea05961059..296e349266 100644 --- a/src/NetAnalyzers/VisualBasic/Microsoft.NetCore.Analyzers/Performance/BasicDoNotUseCountWhenAnyCanBeUsedFixer.vb +++ b/src/NetAnalyzers/VisualBasic/Microsoft.NetCore.Analyzers/Performance/BasicDoNotUseCountWhenAnyCanBeUsedFixer.vb @@ -16,7 +16,7 @@ Namespace Microsoft.NetCore.VisualBasic.Analyzers.Performance Inherits DoNotUseCountWhenAnyCanBeUsedFixer ''' - ''' Tries the get a fixer the specified . + ''' Tries to get a fixer for the specified . ''' ''' The node to get a fixer for. ''' The operation to get the fixer from.