Skip to content

Commit

Permalink
Test fresh extensions wrapper (generated) code
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Jan 29, 2023
1 parent cd39674 commit 982a2b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions MoreLinq/Index.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ namespace MoreLinq
static partial class MoreEnumerable
{
/// <summary>
/// Returns a sequence of <see cref="KeyValuePair{TKey,TValue}"/>
/// where the key is the zero-based index of the value in the source
/// sequence.
/// Returns a sequence of <see cref="KeyValuePair{TKey,TValue}"/> where the key is the
/// zero-based index of the value in the source sequence.
/// </summary>
/// <typeparam name="TSource">Type of elements in <paramref name="source"/> sequence.</typeparam>
/// <typeparam name="TSource">Type of elements in <paramref name="source"/>
/// sequence.</typeparam>
/// <param name="source">The source sequence.</param>
/// <returns>A sequence of <see cref="KeyValuePair{TKey,TValue}"/>.</returns>
/// <remarks>This operator uses deferred execution and streams its
/// results.</remarks>
/// <remarks>
/// This operator uses deferred execution and streams its results.</remarks>

public static IEnumerable<KeyValuePair<int, TSource>> Index<TSource>(this IEnumerable<TSource> source)
{
Expand Down

0 comments on commit 982a2b7

Please sign in to comment.