Skip to content

Commit 5b08103

Browse files
authored
Update Enumerable.xml to remove unexpected ) characters (#10192)
Update to remove unexpected `)` characters from "This method can be used to produce a left outer join when it is combined with the GroupJoin) method." instances.
1 parent 942944e commit 5b08103

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xml/System.Linq/Enumerable.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2976,7 +2976,7 @@ Each chunk except the last one will be of size `size`. The last chunk will conta
29762976

29772977
The default value for reference and nullable types is `null`.
29782978

2979-
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A>) method.
2979+
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A> method.
29802980

29812981
## Examples
29822982
The following code examples demonstrate how to use <xref:System.Linq.Enumerable.DefaultIfEmpty%60%601%28System.Collections.Generic.IEnumerable%7B%60%600%7D%29> to provide a default value in case the source sequence is empty.
@@ -3060,7 +3060,7 @@ Each chunk except the last one will be of size `size`. The last chunk will conta
30603060
## Remarks
30613061
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its `GetEnumerator` method directly or by using `foreach` in C# or `For Each` in Visual Basic.
30623062

3063-
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A>) method.
3063+
This method can be used to produce a left outer join when it is combined with the <xref:System.Linq.Enumerable.GroupJoin%2A> method.
30643064

30653065
## Examples
30663066
The following code example demonstrates how to use the <xref:System.Linq.Enumerable.DefaultIfEmpty%60%601%28System.Collections.Generic.IEnumerable%7B%60%600%7D%2C%60%600%29> method and specify a default value. The first sequence is not empty and the second sequence is empty.

0 commit comments

Comments
 (0)