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 Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public static partial class AsyncEnumerableEx
14
14
/// Merges elements from all of the specified async-enumerable sequences into a single async-enumerable sequence.
15
15
/// </summary>
16
16
/// <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>
18
18
/// <returns>The async-enumerable sequence that merges the elements of the async-enumerable sequences.</returns>
19
19
/// <exception cref="ArgumentNullException"><paramref name="sources"/> is null.</exception>
20
20
public static IAsyncEnumerable < TSource > Merge < TSource > ( params IAsyncEnumerable < TSource > [ ] sources )
@@ -337,7 +337,7 @@ public static IAsyncEnumerable<TSource> Merge<TSource>(this IEnumerable<IAsyncEn
337
337
/// Merges elements from all inner async-enumerable sequences into a single async-enumerable sequence.
338
338
/// </summary>
339
339
/// <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>
341
341
/// <returns>The async-enumerable sequence that merges the elements of the inner sequences.</returns>
342
342
/// <exception cref="ArgumentNullException"><paramref name="sources"/> is null.</exception>
343
343
public static IAsyncEnumerable < TSource > Merge < TSource > ( this IAsyncEnumerable < IAsyncEnumerable < TSource > > sources )
You can’t perform that action at this time.
0 commit comments