diff --git a/Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/Merge.cs b/Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/Merge.cs index 33b22b1f3b..afdfd0282d 100644 --- a/Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/Merge.cs +++ b/Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/Merge.cs @@ -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. /// /// The type of the elements in the source sequences. - /// Observable sequences. + /// Async-enumerable sequences. /// The async-enumerable sequence that merges the elements of the async-enumerable sequences. /// is null. public static IAsyncEnumerable Merge(params IAsyncEnumerable[] sources) @@ -337,7 +337,7 @@ public static IAsyncEnumerable Merge(this IEnumerable /// The type of the elements in the source sequences. - /// Observable sequence of inner async-enumerable sequences. + /// Async-enumerable sequence of inner async-enumerable sequences. /// The async-enumerable sequence that merges the elements of the inner sequences. /// is null. public static IAsyncEnumerable Merge(this IAsyncEnumerable> sources)