Skip to content

Commit 76d4d09

Browse files
committed
Fix Lookup resolution warnings in ToLookup docs; closes #277
1 parent 8ceedad commit 76d4d09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MoreLinq/ToLookup.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ namespace MoreLinq
2323
static partial class MoreEnumerable
2424
{
2525
/// <summary>
26-
/// Creates a <see cref="Lookup{TKey,TValue}" /> from a sequence of
26+
/// Creates a <see cref="ILookup{TKey,TValue}" /> from a sequence of
2727
/// <see cref="KeyValuePair{TKey,TValue}" /> elements.
2828
/// </summary>
2929
/// <typeparam name="TKey">The type of the key.</typeparam>
3030
/// <typeparam name="TValue">The type of the value.</typeparam>
3131
/// <param name="source">The source sequence of key-value pairs.</param>
3232
/// <returns>
33-
/// A <see cref="Lookup{TKey, TValue}"/> containing the values
33+
/// A <see cref="ILookup{TKey,TValue}"/> containing the values
3434
/// mapped to their keys.
3535
/// </returns>
3636

3737
public static ILookup<TKey, TValue> ToLookup<TKey, TValue>(this IEnumerable<KeyValuePair<TKey, TValue>> source) =>
3838
source.ToLookup(null);
3939

4040
/// <summary>
41-
/// Creates a <see cref="Lookup{TKey,TValue}" /> from a sequence of
41+
/// Creates a <see cref="ILookup{TKey,TValue}" /> from a sequence of
4242
/// <see cref="KeyValuePair{TKey,TValue}" /> elements. An additional
4343
/// parameter specifies a comparer for keys.
4444
/// </summary>
@@ -47,7 +47,7 @@ public static ILookup<TKey, TValue> ToLookup<TKey, TValue>(this IEnumerable<KeyV
4747
/// <param name="source">The source sequence of key-value pairs.</param>
4848
/// <param name="comparer">The comparer for keys.</param>
4949
/// <returns>
50-
/// A <see cref="Lookup{TKey, TValue}"/> containing the values
50+
/// A <see cref="ILookup{TKey,TValue}"/> containing the values
5151
/// mapped to their keys.
5252
/// </returns>
5353

0 commit comments

Comments
 (0)