Skip to content

Commit 0832e05

Browse files
committed
FullGroupJoin TSecond type param doc typo; fixes #349
1 parent c17be10 commit 0832e05

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MoreLinq/FullGroupJoin.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static partial class MoreEnumerable
3636
/// for projecting the results is supplied with sequences which preserve their source order.
3737
/// </remarks>
3838
/// <typeparam name="TFirst">The type of the elements in the first input sequence</typeparam>
39-
/// <typeparam name="TSecond">The type of the elements in the first input sequence</typeparam>
39+
/// <typeparam name="TSecond">The type of the elements in the second input sequence</typeparam>
4040
/// <typeparam name="TKey">The type of the key to use to join</typeparam>
4141
/// <param name="first">First sequence</param>
4242
/// <param name="second">Second sequence</param>
@@ -62,7 +62,7 @@ static partial class MoreEnumerable
6262
/// for projecting the results is supplied with sequences which preserve their source order.
6363
/// </remarks>
6464
/// <typeparam name="TFirst">The type of the elements in the first input sequence</typeparam>
65-
/// <typeparam name="TSecond">The type of the elements in the first input sequence</typeparam>
65+
/// <typeparam name="TSecond">The type of the elements in the second input sequence</typeparam>
6666
/// <typeparam name="TKey">The type of the key to use to join</typeparam>
6767
/// <param name="first">First sequence</param>
6868
/// <param name="second">Second sequence</param>
@@ -93,7 +93,7 @@ static partial class MoreEnumerable
9393
/// for projecting the results is supplied with sequences which preserve their source order.
9494
/// </remarks>
9595
/// <typeparam name="TFirst">The type of the elements in the first input sequence</typeparam>
96-
/// <typeparam name="TSecond">The type of the elements in the first input sequence</typeparam>
96+
/// <typeparam name="TSecond">The type of the elements in the second input sequence</typeparam>
9797
/// <typeparam name="TKey">The type of the key to use to join</typeparam>
9898
/// <typeparam name="TResult">The type of the elements of the resulting sequence</typeparam>
9999
/// <param name="first">First sequence</param>
@@ -122,7 +122,7 @@ public static IEnumerable<TResult> FullGroupJoin<TFirst, TSecond, TKey, TResult>
122122
/// for projecting the results is supplied with sequences which preserve their source order.
123123
/// </remarks>
124124
/// <typeparam name="TFirst">The type of the elements in the first input sequence</typeparam>
125-
/// <typeparam name="TSecond">The type of the elements in the first input sequence</typeparam>
125+
/// <typeparam name="TSecond">The type of the elements in the second input sequence</typeparam>
126126
/// <typeparam name="TKey">The type of the key to use to join</typeparam>
127127
/// <typeparam name="TResult">The type of the elements of the resulting sequence</typeparam>
128128
/// <param name="first">First sequence</param>

0 commit comments

Comments
 (0)