Skip to content

Commit

Permalink
Merge pull request #1684 from theodorzoulias/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
clairernovotny authored Feb 1, 2022
2 parents b98f153 + d77f676 commit cf7151b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static partial class AsyncEnumerableEx
/// Merges elements from all of the specified async-enumerable sequences into a single async-enumerable sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequences.</typeparam>
/// <param name="sources">Observable sequences.</param>
/// <param name="sources">Async-enumerable sequences.</param>
/// <returns>The async-enumerable sequence that merges the elements of the async-enumerable sequences.</returns>
/// <exception cref="ArgumentNullException"><paramref name="sources"/> is null.</exception>
public static IAsyncEnumerable<TSource> Merge<TSource>(params IAsyncEnumerable<TSource>[] sources)
Expand Down Expand Up @@ -337,7 +337,7 @@ public static IAsyncEnumerable<TSource> Merge<TSource>(this IEnumerable<IAsyncEn
/// Merges elements from all inner async-enumerable sequences into a single async-enumerable sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequences.</typeparam>
/// <param name="sources">Observable sequence of inner async-enumerable sequences.</param>
/// <param name="sources">Async-enumerable sequence of inner async-enumerable sequences.</param>
/// <returns>The async-enumerable sequence that merges the elements of the inner sequences.</returns>
/// <exception cref="ArgumentNullException"><paramref name="sources"/> is null.</exception>
public static IAsyncEnumerable<TSource> Merge<TSource>(this IAsyncEnumerable<IAsyncEnumerable<TSource>> sources)
Expand Down

0 comments on commit cf7151b

Please sign in to comment.