Skip to content

Commit a13ceb5

Browse files
Bart KoelmanBart Koelman
authored andcommitted
Update rule title
1 parent 58adeee commit a13ceb5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/Overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ This analyzer reports when:
164164

165165
Note: this analyzer requires [Full Solution Analysis](/docs/Full%20Solution%20Analysis.md) enabled.
166166

167-
### [AV2220](https://github.com/dennisdoomen/CSharpGuidelines/blob/1a90b74c95225a0f7e4d0e7a341fd027e17c2320/_pages/2200_FrameworkGuidelines.md#av2220): Avoid LINQ for simple expressions ![](/images/info.png "severity: info")
167+
### [AV2220](https://github.com/dennisdoomen/CSharpGuidelines/blob/1a90b74c95225a0f7e4d0e7a341fd027e17c2320/_pages/2200_FrameworkGuidelines.md#av2220): Avoid LINQ query syntax for simple expressions ![](/images/info.png "severity: info")
168168
This analyzer reports when a query (LINQ expression) can be changed into a single method call.
169169

170170
### [AV2230](https://github.com/dennisdoomen/CSharpGuidelines/blob/1a90b74c95225a0f7e4d0e7a341fd027e17c2320/_pages/2200_FrameworkGuidelines.md#av2230): Only use the `dynamic` keyword when talking to a dynamic object ![](/images/warn.png "severity: warning")

src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/Framework/AvoidQuerySyntaxForSimpleExpressionAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public sealed class AvoidQuerySyntaxForSimpleExpressionAnalyzer : DiagnosticAnal
1616

1717
private const string Title = "Simple query should be replaced by extension method call";
1818
private const string MessageFormat = "Simple query should be replaced by extension method call.";
19-
private const string Description = "Avoid LINQ for simple expressions.";
19+
private const string Description = "Avoid LINQ query syntax for simple expressions.";
2020

2121
[NotNull]
2222
private static readonly AnalyzerCategory Category = AnalyzerCategory.Framework;

0 commit comments

Comments
 (0)