Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Funcky.Async/Extensions/AsyncEnumerableExtensions/Scan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Funcky.Extensions;
public static partial class AsyncEnumerableExtensions
{
/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -17,7 +17,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(
=> InclusiveScanEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -29,7 +29,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwait<TSource, TAccumul
=> InclusiveScanAwaitEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -41,7 +41,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwaitWithCancellation<T
=> InclusiveScanAwaitWithCancellationEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -53,7 +53,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScan<TSource, TAccumulate>(
=> ExclusiveScanEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -65,7 +65,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScanAwait<TSource, TAccumul
=> ExclusiveScanAwaitEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand Down
12 changes: 6 additions & 6 deletions Funcky/Extensions/AsyncEnumerableExtensions/Scan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Funcky.Extensions;
public static partial class AsyncEnumerableExtensions
{
/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -18,7 +18,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(
=> InclusiveScanEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -30,7 +30,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwait<TSource, TAccumul
=> InclusiveScanAwaitEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -42,7 +42,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwaitWithCancellation<T
=> InclusiveScanAwaitWithCancellationEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -54,7 +54,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScan<TSource, TAccumulate>(
=> ExclusiveScanEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -66,7 +66,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScanAwait<TSource, TAccumul
=> ExclusiveScanAwaitEnumerable(source, seed, accumulator);

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand Down
4 changes: 2 additions & 2 deletions Funcky/Extensions/EnumerableExtensions/Scan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Funcky.Extensions;
public static partial class EnumerableExtensions
{
/// <summary>
/// Scan generates a sequence known as the the inclusive prefix sum.
/// Scan generates a sequence known as the inclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand All @@ -23,7 +23,7 @@ public static IEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(this
}

/// <summary>
/// Scan generates a sequence known as the the exclusive prefix sum.
/// Scan generates a sequence known as the exclusive prefix sum.
/// </summary>
/// <typeparam name="TSource">The type of the source elements.</typeparam>
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
Expand Down
2 changes: 1 addition & 1 deletion Funcky/Funcky.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Product>Funcky</Product>
<Description>Funcky is a functional C# library</Description>
<PackageTags>Functional Monad Linq</PackageTags>
<VersionPrefix>3.5.1</VersionPrefix>
<VersionPrefix>3.6.0</VersionPrefix>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Loading