@@ -23,22 +23,22 @@ namespace MoreLinq
23
23
static partial class MoreEnumerable
24
24
{
25
25
/// <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
27
27
/// <see cref="KeyValuePair{TKey,TValue}" /> elements.
28
28
/// </summary>
29
29
/// <typeparam name="TKey">The type of the key.</typeparam>
30
30
/// <typeparam name="TValue">The type of the value.</typeparam>
31
31
/// <param name="source">The source sequence of key-value pairs.</param>
32
32
/// <returns>
33
- /// A <see cref="Lookup {TKey, TValue}"/> containing the values
33
+ /// A <see cref="ILookup {TKey,TValue}"/> containing the values
34
34
/// mapped to their keys.
35
35
/// </returns>
36
36
37
37
public static ILookup < TKey , TValue > ToLookup < TKey , TValue > ( this IEnumerable < KeyValuePair < TKey , TValue > > source ) =>
38
38
source . ToLookup ( null ) ;
39
39
40
40
/// <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
42
42
/// <see cref="KeyValuePair{TKey,TValue}" /> elements. An additional
43
43
/// parameter specifies a comparer for keys.
44
44
/// </summary>
@@ -47,7 +47,7 @@ public static ILookup<TKey, TValue> ToLookup<TKey, TValue>(this IEnumerable<KeyV
47
47
/// <param name="source">The source sequence of key-value pairs.</param>
48
48
/// <param name="comparer">The comparer for keys.</param>
49
49
/// <returns>
50
- /// A <see cref="Lookup {TKey, TValue}"/> containing the values
50
+ /// A <see cref="ILookup {TKey,TValue}"/> containing the values
51
51
/// mapped to their keys.
52
52
/// </returns>
53
53
0 commit comments