From 4830e7585b1d9c925d736b569d830a6c3beb3f00 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Sat, 29 Aug 2015 13:46:07 -0500 Subject: [PATCH] Fix inability to extend private constructor text Fixes #1318 --- ...2ConstructorSummaryDocumentationMustBeginWithStandardText.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StyleCop.Analyzers/StyleCop.Analyzers/DocumentationRules/SA1642ConstructorSummaryDocumentationMustBeginWithStandardText.cs b/StyleCop.Analyzers/StyleCop.Analyzers/DocumentationRules/SA1642ConstructorSummaryDocumentationMustBeginWithStandardText.cs index ff6f62767..a82667a3e 100644 --- a/StyleCop.Analyzers/StyleCop.Analyzers/DocumentationRules/SA1642ConstructorSummaryDocumentationMustBeginWithStandardText.cs +++ b/StyleCop.Analyzers/StyleCop.Analyzers/DocumentationRules/SA1642ConstructorSummaryDocumentationMustBeginWithStandardText.cs @@ -136,7 +136,7 @@ public class SA1642ConstructorSummaryDocumentationMustBeginWithStandardText : St /// <see> element targeting the containing type, then by class or struct as /// appropriate for the containing type, and finally followed by the second element of this array. /// - public static ImmutableArray PrivateConstructorStandardText { get; } = ImmutableArray.Create("Prevents a default instance of the ", " from being created."); + public static ImmutableArray PrivateConstructorStandardText { get; } = ImmutableArray.Create("Prevents a default instance of the ", " from being created"); /// /// Gets the standard text which is expected to appear at the beginning of the <summary>