Skip to content

Commit 00d297c

Browse files
committed
Improvements based on the PR feedbacks
1 parent 2eabcff commit 00d297c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

xml/System.Linq/Enumerable.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12612,8 +12612,8 @@ Only unique elements are returned.
1261212612
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
1261312613
<param name="first">The first sequence to merge.</param>
1261412614
<param name="second">The second sequence to merge.</param>
12615-
<summary>Applies a specified function to the corresponding elements of two sequences, producing a sequence of value types with elements from both sequences.</summary>
12616-
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains merged value types with first elements taken from first sequence and second elements taken from second sequence.</returns>
12615+
<summary>Produces a sequence of tuples with elements from the two specified sequences.</summary>
12616+
<returns>A sequence of tuples with elements taken from the first and second sequences, in that order.</returns>
1261712617
<remarks>To be added.</remarks>
1261812618
</Docs>
1261912619
</Member>

xml/System.Linq/Queryable.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8301,8 +8301,8 @@
83018301
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
83028302
<param name="source1">The first sequence to merge.</param>
83038303
<param name="source2">The second sequence to merge.</param>
8304-
<summary>Merges two sequences by using the specified predicate function, producing a sequence of value types with elements from both sequences.</summary>
8305-
<returns>An <see cref="T:System.Linq.IQueryable`1" /> that contains merged value types with first elements taken from first sequence and second elements taken from second sequence.</returns>
8304+
<summary>Produces a sequence of tuples with elements from the two specified sequences.</summary>
8305+
<returns>A sequence of tuples with elements taken from the first and second sequences, in that order.</returns>
83068306
<remarks>To be added.</remarks>
83078307
</Docs>
83088308
</Member>

0 commit comments

Comments
 (0)