typo: Double word "to" (dotnet/corefx#36264)
authorNick Schonning <nschonni@gmail.com>
Sun, 24 Mar 2019 20:43:54 +0000 (16:43 -0400)
committerJan Kotas <jkotas@microsoft.com>
Mon, 25 Mar 2019 05:48:30 +0000 (22:48 -0700)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/EventSource.cs

index 1108986..95ac1da 100644 (file)
@@ -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;