diff --git a/src/System.Private.CoreLib/src/System/Threading/WaitHandleArray.cs b/src/System.Private.CoreLib/src/System/Threading/WaitHandleArray.cs index 82eef1adf83..9f8ee32cf67 100644 --- a/src/System.Private.CoreLib/src/System/Threading/WaitHandleArray.cs +++ b/src/System.Private.CoreLib/src/System/Threading/WaitHandleArray.cs @@ -68,7 +68,7 @@ public void VerifyElementsAreDefault() for (int i = 0; i < _items.Length; ++i) { - // Do call EqualityComparer.Default here as it may call type loader. Type loader uses + // Do not call EqualityComparer.Default here as it may call type loader. Type loader uses // locks and we would end up with infinite recursion. // Debug.Assert(EqualityComparer.Default.Equals(_items[i], default(T)));