From 2eabcffb28d25accf3843eb956afb24bcf181ba5 Mon Sep 17 00:00:00 2001 From: Maryam Ariyan Date: Wed, 24 Jul 2019 11:10:53 -0700 Subject: [PATCH 1/2] Add missing Zip api docs --- xml/System.Linq/Enumerable.xml | 12 ++++++------ xml/System.Linq/Queryable.xml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/xml/System.Linq/Enumerable.xml b/xml/System.Linq/Enumerable.xml index 1112ffe880b..d1aa0dd2361 100644 --- a/xml/System.Linq/Enumerable.xml +++ b/xml/System.Linq/Enumerable.xml @@ -12608,12 +12608,12 @@ Only unique elements are returned. - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + The type of the elements of the first input sequence. + The type of the elements of the second input sequence. + The first sequence to merge. + The second sequence to merge. + Applies a specified function to the corresponding elements of two sequences, producing a sequence of value types with elements from both sequences. + An that contains merged value types with first elements taken from first sequence and second elements taken from second sequence. To be added. diff --git a/xml/System.Linq/Queryable.xml b/xml/System.Linq/Queryable.xml index 73d8aeb6041..896c9ce56ab 100644 --- a/xml/System.Linq/Queryable.xml +++ b/xml/System.Linq/Queryable.xml @@ -8297,12 +8297,12 @@ - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + The type of the elements of the first input sequence. + The type of the elements of the second input sequence. + The first sequence to merge. + The second sequence to merge. + Merges two sequences by using the specified predicate function, producing a sequence of value types with elements from both sequences. + An that contains merged value types with first elements taken from first sequence and second elements taken from second sequence. To be added. From 00d297c4fea29f9b7bd5558d499287e0cbfd3057 Mon Sep 17 00:00:00 2001 From: Maryam Ariyan Date: Wed, 24 Jul 2019 14:49:31 -0700 Subject: [PATCH 2/2] Improvements based on the PR feedbacks --- xml/System.Linq/Enumerable.xml | 4 ++-- xml/System.Linq/Queryable.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xml/System.Linq/Enumerable.xml b/xml/System.Linq/Enumerable.xml index d1aa0dd2361..eb39981631a 100644 --- a/xml/System.Linq/Enumerable.xml +++ b/xml/System.Linq/Enumerable.xml @@ -12612,8 +12612,8 @@ Only unique elements are returned. The type of the elements of the second input sequence. The first sequence to merge. The second sequence to merge. - Applies a specified function to the corresponding elements of two sequences, producing a sequence of value types with elements from both sequences. - An that contains merged value types with first elements taken from first sequence and second elements taken from second sequence. + Produces a sequence of tuples with elements from the two specified sequences. + A sequence of tuples with elements taken from the first and second sequences, in that order. To be added. diff --git a/xml/System.Linq/Queryable.xml b/xml/System.Linq/Queryable.xml index 896c9ce56ab..0be9455df85 100644 --- a/xml/System.Linq/Queryable.xml +++ b/xml/System.Linq/Queryable.xml @@ -8301,8 +8301,8 @@ The type of the elements of the second input sequence. The first sequence to merge. The second sequence to merge. - Merges two sequences by using the specified predicate function, producing a sequence of value types with elements from both sequences. - An that contains merged value types with first elements taken from first sequence and second elements taken from second sequence. + Produces a sequence of tuples with elements from the two specified sequences. + A sequence of tuples with elements taken from the first and second sequences, in that order. To be added.