Skip to content
This repository was archived by the owner on Apr 20, 2026. It is now read-only.

Commit a338f3b

Browse files
Bart KoelmanBart Koelman
authored andcommitted
Adapt for dennisdoomen/CSharpGuidelines#189: Changed rule title for AV1135
1 parent 196c856 commit a338f3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/MemberDesign/DoNotReturnNullAnalyzer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public sealed class DoNotReturnNullAnalyzer : DiagnosticAnalyzer
1515
{
1616
private const string Title = "Do not return null for strings, collections or tasks";
1717
private const string MessageFormat = "null is returned from {0} '{1}' which has return type of string, collection or task";
18-
private const string Description = "Properties, arguments and return values representing strings or collections should never be null.";
18+
private const string Description = "Properties, arguments and return values representing strings, collections or tasks should never be null.";
1919

2020
public const string DiagnosticId = "AV1135";
2121

0 commit comments

Comments
 (0)