Skip to content

Commit deb218e

Browse files
authored
Fix errors reported by StyleCop Analyzers (#2555)
1 parent ddda590 commit deb218e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/Microsoft.TestPlatform.CommunicationUtilities/Interfaces/Communication/CommunicationException.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@ namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces
1111
public class CommunicationException : Exception
1212
{
1313
/// <summary>
14-
/// Initializes a new instance of <see cref="CommunicationException" /> class.
14+
/// Initializes a new instance of the <see cref="CommunicationException" /> class.
1515
/// </summary>
1616
public CommunicationException()
1717
{
1818
}
1919

2020
/// <summary>
21-
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
21+
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
2222
/// message.
2323
/// </summary>
24-
/// <param Name="message">Message describing the error.</param>
24+
/// <param name="message">Message describing the error.</param>
2525
public CommunicationException(string message)
2626
: base(message)
2727
{
2828
}
2929

3030
/// <summary>
31-
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
31+
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
3232
/// message and inner exception.
3333
/// </summary>
34-
/// <param Name="message">Message describing the error.</param>
35-
/// <param Name="inner">Inner exception.</param>
34+
/// <param name="message">Message describing the error.</param>
35+
/// <param name="inner">Inner exception.</param>
3636
public CommunicationException(string message, Exception inner)
3737
: base(message, inner)
3838
{

src/Microsoft.TestPlatform.PlatformAbstractions/Interfaces/System/IEnvironment.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ namespace Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces
99
public interface IEnvironment
1010
{
1111
/// <summary>
12-
/// Operating System architecture.
12+
/// Gets the Operating System architecture.
1313
/// </summary>
1414
PlatformArchitecture Architecture { get; }
1515

1616
/// <summary>
17-
/// Operating System name.
17+
/// Gets the Operating System name.
1818
/// </summary>
1919
PlatformOperatingSystem OperatingSystem { get; }
2020

2121
/// <summary>
22-
/// Operating System Version
22+
/// Gets the Operating System Version
2323
/// </summary>
2424
string OperatingSystemVersion { get; }
2525

0 commit comments

Comments
 (0)