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:
authorJb Evain <jbevain@gmail.com>2008-01-24 16:42:35 +0300
committerJb Evain <jbevain@gmail.com>2008-01-24 16:42:35 +0300
commit98663aade11640368b6a71ad36447f3d74724334 (patch)
tree70390c32c33a3a2688859feeaf8a7329221685a2 /mcs/class/System.Core/System.Linq/Enumerable.cs
parent76d1357965e971243c512fe0833c69958d4351ca (diff)
fix typo
svn path=/trunk/mcs/; revision=93791
Diffstat (limited to 'mcs/class/System.Core/System.Linq/Enumerable.cs')
-rw-r--r--mcs/class/System.Core/System.Linq/Enumerable.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Core/System.Linq/Enumerable.cs b/mcs/class/System.Core/System.Linq/Enumerable.cs
index 5e39838711d..9946aafcac7 100644
--- a/mcs/class/System.Core/System.Linq/Enumerable.cs
+++ b/mcs/class/System.Core/System.Linq/Enumerable.cs
@@ -1550,7 +1550,7 @@ namespace System.Linq
});
}
- public static double? Min<TSource> (this IEnumerable<TSource> source, Func<TSource, float?> selector)
+ public static float? Min<TSource> (this IEnumerable<TSource> source, Func<TSource, float?> selector)
{
Check.SourceAndSelector (source, selector);