Skip to content

Commit cf7151b

Browse files
Merge pull request #1684 from theodorzoulias/patch-1
2 parents b98f153 + d77f676 commit cf7151b

File tree

1 file changed

+2
-2
lines changed
  • Ix.NET/Source/System.Interactive.Async/System/Linq/Operators

1 file changed

+2
-2
lines changed

Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/Merge.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static partial class AsyncEnumerableEx
1414
/// Merges elements from all of the specified async-enumerable sequences into a single async-enumerable sequence.
1515
/// </summary>
1616
/// <typeparam name="TSource">The type of the elements in the source sequences.</typeparam>
17-
/// <param name="sources">Observable sequences.</param>
17+
/// <param name="sources">Async-enumerable sequences.</param>
1818
/// <returns>The async-enumerable sequence that merges the elements of the async-enumerable sequences.</returns>
1919
/// <exception cref="ArgumentNullException"><paramref name="sources"/> is null.</exception>
2020
public static IAsyncEnumerable<TSource> Merge<TSource>(params IAsyncEnumerable<TSource>[] sources)
@@ -337,7 +337,7 @@ public static IAsyncEnumerable<TSource> Merge<TSource>(this IEnumerable<IAsyncEn
337337
/// Merges elements from all inner async-enumerable sequences into a single async-enumerable sequence.
338338
/// </summary>
339339
/// <typeparam name="TSource">The type of the elements in the source sequences.</typeparam>
340-
/// <param name="sources">Observable sequence of inner async-enumerable sequences.</param>
340+
/// <param name="sources">Async-enumerable sequence of inner async-enumerable sequences.</param>
341341
/// <returns>The async-enumerable sequence that merges the elements of the inner sequences.</returns>
342342
/// <exception cref="ArgumentNullException"><paramref name="sources"/> is null.</exception>
343343
public static IAsyncEnumerable<TSource> Merge<TSource>(this IAsyncEnumerable<IAsyncEnumerable<TSource>> sources)

0 commit comments

Comments
 (0)