Skip to content

Commit

Permalink
Fix inability to extend private constructor text
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Aug 29, 2015
1 parent 7b42e45 commit 4830e75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public class SA1642ConstructorSummaryDocumentationMustBeginWithStandardText : St
/// <c>&lt;see&gt;</c> element targeting the containing type, then by <c>class</c> or <c>struct</c> as
/// appropriate for the containing type, and finally followed by the second element of this array.
/// </value>
public static ImmutableArray<string> PrivateConstructorStandardText { get; } = ImmutableArray.Create("Prevents a default instance of the ", " from being created.");
public static ImmutableArray<string> PrivateConstructorStandardText { get; } = ImmutableArray.Create("Prevents a default instance of the ", " from being created");

/// <summary>
/// Gets the standard text which is expected to appear at the beginning of the <c>&lt;summary&gt;</c>
Expand Down

0 comments on commit 4830e75

Please sign in to comment.