Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 580 Bytes

RCS1101.md

File metadata and controls

36 lines (26 loc) · 580 Bytes

RCS1101: Format documentation summary on multiple lines

Property Value
Id RCS1101
Category Formatting
Severity None

Example

Code with Diagnostic

/// <summary>...</summary> // RCS1101
public void Foo()
{
}

Code with Fix

/// <summary>
/// ...
/// </summary>
public void Foo()
{
}

See Also

(Generated with DotMarkdown)