summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-03-24 16:43:54 -0400
committerJan Kotas <jkotas@microsoft.com>2019-03-24 22:48:30 -0700
commit44994cc61cb00e310d560462ad5de0cfc135c950 (patch)
tree7280a14ed775de5287ac49c434cf7a12658d3ce7
parent3038a7871ebc8f7e552bdd0086bc55a0d5cfee7c (diff)
downloadcoreclr-44994cc61cb00e310d560462ad5de0cfc135c950.tar.gz
coreclr-44994cc61cb00e310d560462ad5de0cfc135c950.tar.bz2
coreclr-44994cc61cb00e310d560462ad5de0cfc135c950.zip
typo: Double word "to" (dotnet/corefx#36264)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSource.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSource.cs b/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSource.cs
index 110898625c..95ac1da80d 100644
--- a/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSource.cs
+++ b/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSource.cs
@@ -2085,7 +2085,7 @@ namespace System.Diagnostics.Tracing
SendManifest(manifestBuilder.CreateManifest());
}
- // We use this low level routine to to bypass the enabled checking, since the eventSource itself is only partially inited.
+ // We use this low level routine to bypass the enabled checking, since the eventSource itself is only partially inited.
fixed (char* msgStringPtr = msgString)
{
EventDescriptor descr = new EventDescriptor(0, 0, 0, (byte)level, 0, 0, keywords);
@@ -3875,7 +3875,7 @@ namespace System.Diagnostics.Tracing
break;
if (cur == this)
{
- // Found our Listener, remove references to to it in the eventSources
+ // Found our Listener, remove references to it in the eventSources
prev.m_Next = cur.m_Next; // Remove entry.
RemoveReferencesToListenerInEventSources(cur);
break;