Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Core / System / Linq / Enumerable.cs
index d1dc03000a9f0b6357a67dd3f7b9c72da5e9be1a..aef6a32d8ec54693b7c067fa73fbe8a7bc2d7a63 100644 (file)
@@ -2152,7 +2152,7 @@ namespace System.Linq
 
         internal int InternalGetHashCode(TKey key)
         {
-            //[....] DevDivBugs 171937. work around comparer implementations that throw when passed null
+            //Microsoft DevDivBugs 171937. work around comparer implementations that throw when passed null
             return (key == null) ? 0 : comparer.GetHashCode(key) & 0x7FFFFFFF;
         }
 
@@ -2370,7 +2370,7 @@ namespace System.Linq
 
         internal int InternalGetHashCode(TElement value)
         {
-            //[....] DevDivBugs 171937. work around comparer implementations that throw when passed null
+            //Microsoft DevDivBugs 171937. work around comparer implementations that throw when passed null
             return (value == null) ? 0 : comparer.GetHashCode(value) & 0x7FFFFFFF;
         }