diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs b/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs index d8eefb9288..cead7a6b1d 100644 --- a/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs +++ b/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs @@ -22,12 +22,12 @@ public static partial class ManagedNameHelper /// /// When this method returns, contains the fully qualified managed type name of the . /// This parameter is passed uninitialized; any value originally supplied in result will be overwritten. - /// The format is defined in the RFC. + /// The format is defined in the RFC. /// /// /// When this method returns, contains the fully qualified managed method name of the . /// This parameter is passed uninitialized; any value originally supplied in result will be overwritten. - /// The format is defined in the RFC. + /// The format is defined in the RFC. /// /// /// is null. @@ -40,7 +40,7 @@ public static partial class ManagedNameHelper /// /// /// More information about and can be found in - /// the RFC. + /// the RFC. /// public static void GetManagedName(MethodBase method, out string managedTypeName, out string managedMethodName) => GetManagedNameAndHierarchy(method, false, out managedTypeName, out managedMethodName, out _); @@ -54,12 +54,12 @@ public static void GetManagedName(MethodBase method, out string managedTypeName, /// /// When this method returns, contains the fully qualified managed type name of the . /// This parameter is passed uninitialized; any value originally supplied in result will be overwritten. - /// The format is defined in the RFC. + /// The format is defined in the RFC. /// /// /// When this method returns, contains the fully qualified managed method name of the . /// This parameter is passed uninitialized; any value originally supplied in result will be overwritten. - /// The format is defined in the RFC. + /// The format is defined in the RFC. /// /// /// When this method returns, contains the default test hierarchy values of the . @@ -76,7 +76,7 @@ public static void GetManagedName(MethodBase method, out string managedTypeName, /// /// /// More information about and can be found in - /// the RFC. + /// the RFC. /// public static void GetManagedName(MethodBase method, out string managedTypeName, out string managedMethodName, out string?[] hierarchyValues) { @@ -213,11 +213,11 @@ private static void GetManagedNameAndHierarchy(MethodBase method, bool useClosed /// /// /// The fully qualified managed name of the type. - /// The format is defined in the RFC. + /// The format is defined in the RFC. /// /// /// The fully qualified managed name of the method. - /// The format is defined in the RFC. + /// The format is defined in the RFC. /// /// /// A object that represents specified parameters, throws if null. @@ -228,7 +228,7 @@ private static void GetManagedNameAndHierarchy(MethodBase method, bool useClosed /// /// /// More information about and can be found in - /// the RFC. + /// the RFC. /// public static MethodBase GetMethod(Assembly assembly, string managedTypeName, string managedMethodName) {