diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Interfaces/Communication/CommunicationException.cs b/src/Microsoft.TestPlatform.CommunicationUtilities/Interfaces/Communication/CommunicationException.cs
index c9a11aeada..4dcfebff5d 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Interfaces/Communication/CommunicationException.cs
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Interfaces/Communication/CommunicationException.cs
@@ -11,28 +11,28 @@ namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces
public class CommunicationException : Exception
{
///
- /// Initializes a new instance of class.
+ /// Initializes a new instance of the class.
///
public CommunicationException()
{
}
///
- /// Initializes a new instance of class with provided
+ /// Initializes a new instance of the class with provided
/// message.
///
- /// Message describing the error.
+ /// Message describing the error.
public CommunicationException(string message)
: base(message)
{
}
///
- /// Initializes a new instance of class with provided
+ /// Initializes a new instance of the class with provided
/// message and inner exception.
///
- /// Message describing the error.
- /// Inner exception.
+ /// Message describing the error.
+ /// Inner exception.
public CommunicationException(string message, Exception inner)
: base(message, inner)
{
diff --git a/src/Microsoft.TestPlatform.PlatformAbstractions/Interfaces/System/IEnvironment.cs b/src/Microsoft.TestPlatform.PlatformAbstractions/Interfaces/System/IEnvironment.cs
index 950b7218a0..5ddff59101 100644
--- a/src/Microsoft.TestPlatform.PlatformAbstractions/Interfaces/System/IEnvironment.cs
+++ b/src/Microsoft.TestPlatform.PlatformAbstractions/Interfaces/System/IEnvironment.cs
@@ -9,17 +9,17 @@ namespace Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces
public interface IEnvironment
{
///
- /// Operating System architecture.
+ /// Gets the Operating System architecture.
///
PlatformArchitecture Architecture { get; }
///
- /// Operating System name.
+ /// Gets the Operating System name.
///
PlatformOperatingSystem OperatingSystem { get; }
///
- /// Operating System Version
+ /// Gets the Operating System Version
///
string OperatingSystemVersion { get; }