Skip to content

Commit

Permalink
Clarification of key args being partitioned
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Apr 21, 2017
1 parent bef4568 commit 97ed654
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions MoreLinq/Partition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public static TResult Partition<TKey, TElement, TResult>(this IEnumerable<IGroup
/// <typeparam name="TElement">Type of elements in source groupings.</typeparam>
/// <typeparam name="TResult">Type of the result.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="key">The key to partition.</param>
/// <param name="key">The key to partition on.</param>
/// <param name="comparer">The comparer for keys.</param>
/// <param name="resultSelector">
/// Function that projects the result from elements of the group
Expand Down Expand Up @@ -193,8 +193,8 @@ public static TResult Partition<TKey, TElement, TResult>(this IEnumerable<IGroup
/// <typeparam name="TElement">Type of elements in source groupings.</typeparam>
/// <typeparam name="TResult">Type of the result.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="key1">The first key to partition.</param>
/// <param name="key2">The second key to partition.</param>
/// <param name="key1">The first key to partition on.</param>
/// <param name="key2">The second key to partition on.</param>
/// <param name="resultSelector">
/// Function that projects the result from elements of the group
/// matching <paramref name="key1"/>, elements of the group matching
Expand All @@ -220,8 +220,8 @@ public static TResult Partition<TKey, TElement, TResult>(this IEnumerable<IGroup
/// <typeparam name="TElement">Type of elements in source groupings.</typeparam>
/// <typeparam name="TResult">Type of the result.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="key1">The first key to partition.</param>
/// <param name="key2">The second key to partition.</param>
/// <param name="key1">The first key to partition on.</param>
/// <param name="key2">The second key to partition on.</param>
/// <param name="comparer">The comparer for keys.</param>
/// <param name="resultSelector">
/// Function that projects the result from elements of the group
Expand Down Expand Up @@ -251,9 +251,9 @@ public static TResult Partition<TKey, TElement, TResult>(this IEnumerable<IGroup
/// <typeparam name="TElement">Type of elements in source groupings.</typeparam>
/// <typeparam name="TResult">Type of the result.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="key1">The first key to partition.</param>
/// <param name="key2">The second key to partition.</param>
/// <param name="key3">The third key to partition.</param>
/// <param name="key1">The first key to partition on.</param>
/// <param name="key2">The second key to partition on.</param>
/// <param name="key3">The third key to partition on.</param>
/// <param name="resultSelector">
/// Function that projects the result from elements of groups
/// matching <paramref name="key1"/>, <paramref name="key2"/> and
Expand All @@ -279,9 +279,9 @@ public static TResult Partition<TKey, TElement, TResult>(this IEnumerable<IGroup
/// <typeparam name="TElement">Type of elements in source groupings.</typeparam>
/// <typeparam name="TResult">Type of the result.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="key1">The first key to partition.</param>
/// <param name="key2">The second key to partition.</param>
/// <param name="key3">The third key to partition.</param>
/// <param name="key1">The first key to partition on.</param>
/// <param name="key2">The second key to partition on.</param>
/// <param name="key3">The third key to partition on.</param>
/// <param name="comparer">The comparer for keys.</param>
/// <param name="resultSelector">
/// Function that projects the result from elements of groups
Expand Down

0 comments on commit 97ed654

Please sign in to comment.