Skip to content

Commit 2eabcff

Browse files
committed
Add missing Zip api docs
1 parent 49a5721 commit 2eabcff

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>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>
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>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>
83068306
<remarks>To be added.</remarks>
83078307
</Docs>
83088308
</Member>

0 commit comments

Comments
 (0)