Update Reference Sources to .NET Framework 4.6.1
[mono.git] / mcs / class / referencesource / mscorlib / system / threading / ManualResetEventSlim.cs
index 2d1278ab9beb87cf138738a5f24cf162beb2b101..7d9e15d1084cd16d8aaa52d5ecc16f1fe7064245 100644 (file)
@@ -8,7 +8,7 @@
 //
 // SlimManualResetEvent.cs
 //
-// <OWNER>Microsoft</OWNER>
+// <OWNER>[....]</OWNER>
 //
 // An manual-reset event that mixes a little spinning with a true Win32 event.
 //
@@ -281,7 +281,7 @@ namespace System.Threading
             // guarantee only one event is actually stored in this field.
             if (Interlocked.CompareExchange(ref m_eventObj, newEventObj, null) != null)
             {
-                // We raced with someone else and lost. Destroy the garbage event.
+                // We ----d with someone else and lost. Destroy the garbage event.
                 newEventObj.Close();
 
                 return false;