From 03d3253f94a7c02a7d156fe378c73b736b202777 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Sun, 24 Mar 2019 16:41:06 -0400 Subject: [PATCH] typo: Double word "a" (dotnet/corefx#36271) Signed-off-by: dotnet-bot --- .../shared/System/Diagnostics/Tracing/ActivityTracker.cs | 2 +- src/System.Private.CoreLib/shared/System/Nullable.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/ActivityTracker.cs b/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/ActivityTracker.cs index 70ebafc..d0cd84a 100644 --- a/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/ActivityTracker.cs +++ b/src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/ActivityTracker.cs @@ -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. /// AsyncLocal m_current; bool m_checkedForEnable; diff --git a/src/System.Private.CoreLib/shared/System/Nullable.cs b/src/System.Private.CoreLib/shared/System/Nullable.cs index 858f398..6f8d667 100644 --- a/src/System.Private.CoreLib/shared/System/Nullable.cs +++ b/src/System.Private.CoreLib/shared/System/Nullable.cs @@ -7,7 +7,7 @@ using System.Runtime.Versioning; namespace System { - // Because we have special type system support that says a a boxed Nullable + // Because we have special type system support that says a boxed Nullable // can be used where a boxed is use, Nullable can not implement any intefaces // at all (since T may not). Do NOT add any interfaces to Nullable! // -- 2.7.4