Skip to content

Commit

Permalink
Fix extension type arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhurst authored Nov 7, 2023
1 parent da54671 commit 2598f47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static ItemActionAsyncProcessorBuilder<T, TOutput> SelectAsync<T, TOutput
.SelectAsync(taskSelector, cancellationToken);
}

public static ItemActionAsyncProcessorBuilder<T> ForEachAsync<T, TOutput>(this IEnumerable<T> items, Func<T, Task> taskSelector, CancellationToken cancellationToken = default)
public static ItemActionAsyncProcessorBuilder<T> ForEachAsync<T>(this IEnumerable<T> items, Func<T, Task> taskSelector, CancellationToken cancellationToken = default)
{
return items.ToAsyncProcessorBuilder()
.ForEachAsync(taskSelector, cancellationToken);
Expand Down

0 comments on commit 2598f47

Please sign in to comment.