Skip to content

Commit d4871e0

Browse files
sharwelldfyx
authored andcommitted
Fix violations of SA1116
1 parent 1b1394a commit d4871e0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers/DocumentationRules/SA1642ConstructorSummaryDocumentationMustBeginWithStandardText.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ private static void HandleConstructorDeclaration(SyntaxNodeAnalysisContext conte
162162
// also allow the non-private wording for private constructors
163163
HandleDeclaration(
164164
context,
165-
string.Format(resourceManager.GetString("NonPrivateConstructorStandardTextFirstPart", culture),
165+
string.Format(
166+
resourceManager.GetString("NonPrivateConstructorStandardTextFirstPart", culture),
166167
typeKindText),
167168
string.Format(
168169
resourceManager.GetString("NonPrivateConstructorStandardTextSecondPart", culture),
@@ -173,7 +174,8 @@ private static void HandleConstructorDeclaration(SyntaxNodeAnalysisContext conte
173174
{
174175
HandleDeclaration(
175176
context,
176-
string.Format(resourceManager.GetString("NonPrivateConstructorStandardTextFirstPart", culture),
177+
string.Format(
178+
resourceManager.GetString("NonPrivateConstructorStandardTextFirstPart", culture),
177179
typeKindText),
178180
string.Format(
179181
resourceManager.GetString("NonPrivateConstructorStandardTextSecondPart", culture),

0 commit comments

Comments
 (0)