Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/System.Core/System/Linq/Enumerable.cs')
-rw-r--r--mcs/class/referencesource/System.Core/System/Linq/Enumerable.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/referencesource/System.Core/System/Linq/Enumerable.cs b/mcs/class/referencesource/System.Core/System/Linq/Enumerable.cs
index 66e864ef023..f062ca5e639 100644
--- a/mcs/class/referencesource/System.Core/System/Linq/Enumerable.cs
+++ b/mcs/class/referencesource/System.Core/System/Linq/Enumerable.cs
@@ -2128,7 +2128,7 @@ namespace System.Linq
internal int InternalGetHashCode(TKey key)
{
- //Microsoft DevDivBugs 171937. work around comparer implementations that throw when passed null
+ //[....] DevDivBugs 171937. work around comparer implementations that throw when passed null
return (key == null) ? 0 : comparer.GetHashCode(key) & 0x7FFFFFFF;
}
@@ -2346,7 +2346,7 @@ namespace System.Linq
internal int InternalGetHashCode(TElement value)
{
- //Microsoft DevDivBugs 171937. work around comparer implementations that throw when passed null
+ //[....] DevDivBugs 171937. work around comparer implementations that throw when passed null
return (value == null) ? 0 : comparer.GetHashCode(value) & 0x7FFFFFFF;
}