diff --git a/documentation/SA1642.md b/documentation/SA1642.md index f64ea96b4..f12da3238 100644 --- a/documentation/SA1642.md +++ b/documentation/SA1642.md @@ -96,6 +96,23 @@ private Customer() } ``` +The `` tag can be used within the `` tag to structure the text. +For example: + +```csharp +/// +/// +/// Initializes a new instance of the class. +/// +/// +/// Additional information can be included in subsequent paragraphs. +/// +/// +public Customer() +{ +} +``` + ## How to fix violations To fix a violation of this rule, edit the summary text for the constructor as described above.