typo: Double word "a" (dotnet/corefx#36271)
authorNick Schonning <nschonni@gmail.com>
Sun, 24 Mar 2019 20:41:06 +0000 (16:41 -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/ActivityTracker.cs
src/System.Private.CoreLib/shared/System/Nullable.cs

index 70ebafc..d0cd84a 100644 (file)
@@ -590,7 +590,7 @@ namespace System.Diagnostics.Tracing
         /// while that task is running.   Thus m_current 'flows' to any task that is caused by the current thread that
         /// last set it.   
         /// 
-        /// This variable points a a linked list that represents all Activities that have started but have not stopped.  
+        /// This variable points to a linked list that represents all Activities that have started but have not stopped.  
         /// </summary>
         AsyncLocal<ActivityInfo> m_current;
         bool m_checkedForEnable;
index 858f398..6f8d667 100644 (file)
@@ -7,7 +7,7 @@ using System.Runtime.Versioning;
 
 namespace System
 {
-    // Because we have special type system support that says a boxed Nullable<T>
+    // Because we have special type system support that says a boxed Nullable<T>
     // can be used where a boxed<T> is use, Nullable<T> can not implement any intefaces
     // at all (since T may not).   Do NOT add any interfaces to Nullable!
     //