Skip to content

Commit 0991ecf

Browse files
authored
Fix RCS1139: Add summary element to documentation comment (#14442)
https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS1139.md
1 parent ae06ef1 commit 0991ecf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Microsoft.PowerShell.Commands.Diagnostics/GetCounterCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
namespace Microsoft.PowerShell.Commands
1818
{
19-
///
19+
/// <summary>
2020
/// Class that implements the Get-Counter cmdlet.
21-
///
21+
/// </summary>
2222
[Cmdlet(VerbsCommon.Get, "Counter", DefaultParameterSetName = "GetCounterSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2109647")]
2323
public sealed class GetCounterCommand : PSCmdlet
2424
{

src/Microsoft.PowerShell.Commands.Diagnostics/GetEventCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
namespace Microsoft.PowerShell.Commands
2222
{
23-
///
23+
/// <summary>
2424
/// Class that implements the Get-WinEvent cmdlet.
25-
///
25+
/// </summary>
2626
[Cmdlet(VerbsCommon.Get, "WinEvent", DefaultParameterSetName = "GetLogSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096581")]
2727
public sealed class GetWinEventCommand : PSCmdlet
2828
{

src/Microsoft.PowerShell.Commands.Diagnostics/NewWinEventCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
namespace Microsoft.PowerShell.Commands
1616
{
17-
///
17+
/// <summary>
1818
/// Class that implements the New-WinEvent cmdlet.
1919
/// This cmdlet writes a new Etw event using the provider specified in parameter.
20-
///
20+
/// </summary>
2121
[Cmdlet(VerbsCommon.New, "WinEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096808")]
2222
public sealed class NewWinEventCommand : PSCmdlet
2323
{

0 commit comments

Comments
 (0)