@@ -5,7 +5,7 @@ namespace Funcky.Extensions;
55public static partial class AsyncEnumerableExtensions
66{
77 /// <summary>
8- /// Scan generates a sequence known as the the inclusive prefix sum.
8+ /// Scan generates a sequence known as the inclusive prefix sum.
99 /// </summary>
1010 /// <typeparam name="TSource">The type of the source elements.</typeparam>
1111 /// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -17,7 +17,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(
1717 => InclusiveScanEnumerable ( source , seed , accumulator ) ;
1818
1919 /// <summary>
20- /// Scan generates a sequence known as the the inclusive prefix sum.
20+ /// Scan generates a sequence known as the inclusive prefix sum.
2121 /// </summary>
2222 /// <typeparam name="TSource">The type of the source elements.</typeparam>
2323 /// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -29,7 +29,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwait<TSource, TAccumul
2929 => InclusiveScanAwaitEnumerable ( source , seed , accumulator ) ;
3030
3131 /// <summary>
32- /// Scan generates a sequence known as the the inclusive prefix sum.
32+ /// Scan generates a sequence known as the inclusive prefix sum.
3333 /// </summary>
3434 /// <typeparam name="TSource">The type of the source elements.</typeparam>
3535 /// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -41,7 +41,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwaitWithCancellation<T
4141 => InclusiveScanAwaitWithCancellationEnumerable ( source , seed , accumulator ) ;
4242
4343 /// <summary>
44- /// Scan generates a sequence known as the the exclusive prefix sum.
44+ /// Scan generates a sequence known as the exclusive prefix sum.
4545 /// </summary>
4646 /// <typeparam name="TSource">The type of the source elements.</typeparam>
4747 /// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -53,7 +53,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScan<TSource, TAccumulate>(
5353 => ExclusiveScanEnumerable ( source , seed , accumulator ) ;
5454
5555 /// <summary>
56- /// Scan generates a sequence known as the the exclusive prefix sum.
56+ /// Scan generates a sequence known as the exclusive prefix sum.
5757 /// </summary>
5858 /// <typeparam name="TSource">The type of the source elements.</typeparam>
5959 /// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -65,7 +65,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScanAwait<TSource, TAccumul
6565 => ExclusiveScanAwaitEnumerable ( source , seed , accumulator ) ;
6666
6767 /// <summary>
68- /// Scan generates a sequence known as the the exclusive prefix sum.
68+ /// Scan generates a sequence known as the exclusive prefix sum.
6969 /// </summary>
7070 /// <typeparam name="TSource">The type of the source elements.</typeparam>
7171 /// <typeparam name="TAccumulate">The seed and target type.</typeparam>
0 commit comments