From 712ace48155d94fd62f7501caa4344915f515776 Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Wed, 28 Oct 2020 19:03:17 +0100 Subject: [PATCH] Fix return value docs for "MinBy"/MaxBy" --- MoreLinq/Extensions.g.cs | 8 ++++---- MoreLinq/MaxBy.cs | 4 ++-- MoreLinq/MinBy.cs | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MoreLinq/Extensions.g.cs b/MoreLinq/Extensions.g.cs index 2bab62b83..30868b39d 100644 --- a/MoreLinq/Extensions.g.cs +++ b/MoreLinq/Extensions.g.cs @@ -3325,7 +3325,7 @@ public static partial class MaxByExtension /// Type of the projected element /// Source sequence /// Selector to use to pick the results to compare - /// The maximal element, according to the projection. + /// The sequence of maximal elements, according to the projection. /// or is null public static IExtremaEnumerable MaxBy(this IEnumerable source, @@ -3345,7 +3345,7 @@ public static IExtremaEnumerable MaxBy(this IEnumerable< /// Source sequence /// Selector to use to pick the results to compare /// Comparer to use to compare projected values - /// The maximal element, according to the projection. + /// The sequence of maximal elements, according to the projection. /// , /// or is null @@ -3373,7 +3373,7 @@ public static partial class MinByExtension /// Type of the projected element /// Source sequence /// Selector to use to pick the results to compare - /// The minimal element, according to the projection. + /// The sequence of minimal elements, according to the projection. /// or is null public static IExtremaEnumerable MinBy(this IEnumerable source, @@ -3393,7 +3393,7 @@ public static IExtremaEnumerable MinBy(this IEnumerable< /// Source sequence /// Selector to use to pick the results to compare /// Comparer to use to compare projected values - /// The minimal element, according to the projection. + /// The sequence of minimal elements, according to the projection. /// , /// or is null diff --git a/MoreLinq/MaxBy.cs b/MoreLinq/MaxBy.cs index faf269b4d..098c15f00 100644 --- a/MoreLinq/MaxBy.cs +++ b/MoreLinq/MaxBy.cs @@ -184,7 +184,7 @@ public static T SingleOrDefault(this IExtremaEnumerable source) /// Type of the projected element /// Source sequence /// Selector to use to pick the results to compare - /// The maximal element, according to the projection. + /// The sequence of maximal elements, according to the projection. /// or is null public static IExtremaEnumerable MaxBy(this IEnumerable source, @@ -206,7 +206,7 @@ public static IExtremaEnumerable MaxBy(this IEnumerable< /// Source sequence /// Selector to use to pick the results to compare /// Comparer to use to compare projected values - /// The maximal element, according to the projection. + /// The sequence of maximal elements, according to the projection. /// , /// or is null diff --git a/MoreLinq/MinBy.cs b/MoreLinq/MinBy.cs index 3a06bcb98..625d698df 100644 --- a/MoreLinq/MinBy.cs +++ b/MoreLinq/MinBy.cs @@ -35,7 +35,7 @@ static partial class MoreEnumerable /// Type of the projected element /// Source sequence /// Selector to use to pick the results to compare - /// The minimal element, according to the projection. + /// The sequence of minimal elements, according to the projection. /// or is null public static IExtremaEnumerable MinBy(this IEnumerable source, @@ -57,7 +57,7 @@ public static IExtremaEnumerable MinBy(this IEnumerable< /// Source sequence /// Selector to use to pick the results to compare /// Comparer to use to compare projected values - /// The minimal element, according to the projection. + /// The sequence of minimal elements, according to the projection. /// , /// or is null