/// 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;
namespace System
{
- // Because we have special type system support that says a 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!
//