diff --git a/src/TestFramework/Extension.Shared/TestContext.cs b/src/TestFramework/Extension.Shared/TestContext.cs
index f23690991b..421feb041e 100644
--- a/src/TestFramework/Extension.Shared/TestContext.cs
+++ b/src/TestFramework/Extension.Shared/TestContext.cs
@@ -58,10 +58,10 @@ public abstract class TestContext
public virtual UnitTestOutcome CurrentTestOutcome => UnitTestOutcome.Unknown;
///
- /// Adds a file name to the list in TestResult.ResultFileNames
+ /// Adds a file name to the list in TestResult.ResultFileNames.
///
///
- /// The file Name.
+ /// The file name.
///
public abstract void AddResultFile(string fileName);
diff --git a/src/TestFramework/MSTest.Core/Attributes/TestMethod/TestMethodAttribute.cs b/src/TestFramework/MSTest.Core/Attributes/TestMethod/TestMethodAttribute.cs
index 84fae15e67..9514dbe38a 100644
--- a/src/TestFramework/MSTest.Core/Attributes/TestMethod/TestMethodAttribute.cs
+++ b/src/TestFramework/MSTest.Core/Attributes/TestMethod/TestMethodAttribute.cs
@@ -23,7 +23,7 @@ public TestMethodAttribute()
/// Initializes a new instance of the class.
///
///
- /// Display Name for the test
+ /// Display name for the test.
///
public TestMethodAttribute(string displayName)
{
@@ -31,7 +31,7 @@ public TestMethodAttribute(string displayName)
}
///
- /// Gets display Name for the test
+ /// Gets display name for the test.
///
public string DisplayName { get; }