summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Diagnostics
diff options
context:
space:
mode:
authorNikita Potapenko <dev.potapy4@hotmail.com>2019-03-16 17:41:47 +0200
committerJan Kotas <jkotas@microsoft.com>2019-03-16 08:41:47 -0700
commitfe851740636b89c052af316576b8d47f0c5edd06 (patch)
treebbb35d08307f041d0e61fa0cb2914aec9523a005 /src/System.Private.CoreLib/shared/System/Diagnostics
parent456dcb6f8724b21ea413aed11df44eeec649d047 (diff)
downloadcoreclr-fe851740636b89c052af316576b8d47f0c5edd06.tar.gz
coreclr-fe851740636b89c052af316576b8d47f0c5edd06.tar.bz2
coreclr-fe851740636b89c052af316576b8d47f0c5edd06.zip
Fix typo (#23300)
.Net -> .NET
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Diagnostics')
-rw-r--r--src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/TraceLogging/PropertyValue.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/TraceLogging/PropertyValue.cs b/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/TraceLogging/PropertyValue.cs
index daa6d9736a..0f87ea58db 100644
--- a/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/TraceLogging/PropertyValue.cs
+++ b/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/TraceLogging/PropertyValue.cs
@@ -185,7 +185,7 @@ namespace System.Diagnostics.Tracing
/// <summary>
/// Gets a delegate that gets the value of a property of a value type. We unfortunately cannot avoid boxing the value type,
/// without making this generic over the value type. That would result in a large number of generic instantiations, and furthermore
- /// does not work correctly on .Net Native (we cannot express the needed instantiations in an rd.xml file). We expect that user-defined
+ /// does not work correctly on .NET Native (we cannot express the needed instantiations in an rd.xml file). We expect that user-defined
/// value types will be rare, and in any case the boxing only happens for events that are actually enabled.
/// </summary>
private static Func<PropertyValue, PropertyValue> GetBoxedValueTypePropertyGetter(PropertyInfo property)
@@ -202,7 +202,7 @@ namespace System.Diagnostics.Tracing
/// <summary>
/// For properties of reference types, we use a generic helper class to get the value. This enables us to use MethodInfo.CreateDelegate
- /// to build a fast getter. We can get away with this on .Net Native, because we really only need one runtime instantiation of the
+ /// to build a fast getter. We can get away with this on .NET Native, because we really only need one runtime instantiation of the
/// generic type, since it's only instantiated over reference types (and thus all instances are shared).
/// </summary>
/// <param name="property"></param>