typo: Double word "that" (dotnet/corefx#36269)
authorNick Schonning <nschonni@gmail.com>
Sun, 24 Mar 2019 20:43:04 +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
src/System.Private.CoreLib/shared/System/Threading/SpinWait.cs
src/System.Private.CoreLib/shared/System/Threading/Tasks/Sources/ManualResetValueTaskSourceCore.cs

index 3a18dce..1108986 100644 (file)
@@ -5369,7 +5369,7 @@ namespace System.Diagnostics.Tracing
         // support). The manifest generated *MUST* have the channels specified in the same order (that's how our computed keywords are mapped
         // to channels by the OS infrastructure).
         // If channelKeyworkds is present, and has keywords bits in the ValidPredefinedChannelKeywords then it is 
-        // assumed that that the keyword for that channel should be that bit.   
+        // assumed that the keyword for that channel should be that bit.   
         // otherwise we allocate a channel bit for the channel.  
         // explicit channel bits are only used by WCF to mimic an existing manifest, 
         // so we don't dont do error checking.  
index 88b4b41..6fa99e1 100644 (file)
@@ -223,7 +223,7 @@ namespace System.Threading
                 // since we expect most callers will eventually block anyway.
                 //
                 // Also, cap the maximum spin count to a value such that many thousands of CPU cycles would not be wasted doing
-                // the equivalent of YieldProcessor(), as that that point SwitchToThread/Sleep(0) are more likely to be able to
+                // the equivalent of YieldProcessor(), as at that point SwitchToThread/Sleep(0) are more likely to be able to
                 // allow other useful work to run. Long YieldProcessor() loops can help to reduce contention, but Sleep(1) is
                 // usually better for that.
                 //
index 3244e0a..797ed6e 100644 (file)
@@ -197,7 +197,7 @@ namespace System.Threading.Tasks.Sources
             }
         }
 
-        /// <summary>Signals that that the operation has completed.  Invoked after the result or error has been set.</summary>
+        /// <summary>Signals that the operation has completed.  Invoked after the result or error has been set.</summary>
         private void SignalCompletion()
         {
             if (_completed)