Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / mscorlib / system / Lazy.cs
index 41de248149aca737ed394495240cb81e11056750..edb3f9e9368136ebf9cc28c894c8f87705197f99 100644 (file)
@@ -8,7 +8,7 @@
 //
 // Lazy.cs
 //
-// <OWNER>[....]</OWNER>
+// <OWNER>Microsoft</OWNER>
 //
 // --------------------------------------------------------------------------------------
 //
@@ -431,7 +431,7 @@ namespace System
                     }
                     else if (factory == ALREADY_INVOKED_SENTINEL)
                     {
-                        // Another thread ----d with us and beat us to successfully invoke the factory.
+                        // Another thread raced with us and beat us to successfully invoke the factory.
                         return null;
                     }
                     boxed = new Boxed(factory());