Skip to content

Commit ead68ff

Browse files
maryamariyanmairaw
authored andcommitted
Add missing Zip API docs (#2816)
* Add missing Zip api docs * Improvements based on the PR feedbacks
1 parent de86381 commit ead68ff

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

xml/System.Linq/Enumerable.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12608,12 +12608,12 @@ Only unique elements are returned.
1260812608
<Parameter Name="second" Type="System.Collections.Generic.IEnumerable&lt;TSecond&gt;" Index="1" FrameworkAlternate="netcore-3.0" />
1260912609
</Parameters>
1261012610
<Docs>
12611-
<typeparam name="TFirst">To be added.</typeparam>
12612-
<typeparam name="TSecond">To be added.</typeparam>
12613-
<param name="first">To be added.</param>
12614-
<param name="second">To be added.</param>
12615-
<summary>To be added.</summary>
12616-
<returns>To be added.</returns>
12611+
<typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
12612+
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
12613+
<param name="first">The first sequence to merge.</param>
12614+
<param name="second">The second sequence to merge.</param>
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8297,12 +8297,12 @@
82978297
<Parameter Name="source2" Type="System.Collections.Generic.IEnumerable&lt;TSecond&gt;" Index="1" FrameworkAlternate="netcore-3.0" />
82988298
</Parameters>
82998299
<Docs>
8300-
<typeparam name="TFirst">To be added.</typeparam>
8301-
<typeparam name="TSecond">To be added.</typeparam>
8302-
<param name="source1">To be added.</param>
8303-
<param name="source2">To be added.</param>
8304-
<summary>To be added.</summary>
8305-
<returns>To be added.</returns>
8300+
<typeparam name="TFirst">The type of the elements of the first input sequence.</typeparam>
8301+
<typeparam name="TSecond">The type of the elements of the second input sequence.</typeparam>
8302+
<param name="source1">The first sequence to merge.</param>
8303+
<param name="source2">The second sequence to merge.</param>
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)