diff --git a/xml/System.Linq/Enumerable.xml b/xml/System.Linq/Enumerable.xml index 782ca51c029..b47bc285ffb 100644 --- a/xml/System.Linq/Enumerable.xml +++ b/xml/System.Linq/Enumerable.xml @@ -9902,7 +9902,7 @@ Only unique elements are returned. If `source` contains fewer than `count` elements, an empty is returned. If `count` is less than or equal to zero, all elements of `source` are yielded. - The and methods are functional complements. Given a sequence `coll` and an integer `n`, concatenating the results of `coll.Take(n)` and `coll.Skip(n)` yields the same sequence as `coll`. + The and methods are functional complements. Given a collection sequence `coll` and an integer `n`, concatenating the results of `coll.Take(n)` and `coll.Skip(n)` yields the same sequence as `coll`. In Visual Basic query expression syntax, a `Skip` clause translates to an invocation of . @@ -10039,7 +10039,7 @@ If `count` is not a positive number, this method returns an identical copy of th If `predicate` returns `true` for all elements in the sequence, an empty is returned. - The and methods are functional complements. Given a sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. + The and methods are functional complements. Given a collection sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. In Visual Basic query expression syntax, a `Skip While` clause translates to an invocation of . @@ -10115,7 +10115,7 @@ If `count` is not a positive number, this method returns an identical copy of th The first argument of `predicate` represents the element to test. The second argument represents the zero-based index of the element within `source`. - The and methods are functional complements. Given a sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. + The and methods are functional complements. Given a collection sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. In Visual Basic query expression syntax, a `Skip While` clause translates to an invocation of . @@ -11506,7 +11506,7 @@ If `count` is not a positive number, this method returns an identical copy of th If `count` is less than or equal to zero, `source` is not enumerated and an empty is returned. - The and methods are functional complements. Given a sequence `coll` and an integer `n`, concatenating the results of `coll.Take(n)` and `coll.Skip(n)` yields the same sequence as `coll`. + The and methods are functional complements. Given a collection sequence `coll` and an integer `n`, concatenating the results of `coll.Take(n)` and `coll.Skip(n)` yields the same sequence as `coll`. In Visual Basic query expression syntax, a `Take` clause translates to an invocation of . @@ -11678,7 +11678,7 @@ If `count` is not a positive number, this method returns an empty enumerable col The method tests each element of `source` by using `predicate` and yields the element if the result is `true`. Enumeration stops when the predicate function returns `false` for an element or when `source` contains no more elements. - The and methods are functional complements. Given a sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. + The and methods are functional complements. Given a collection sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. In Visual Basic query expression syntax, a `Take While` clause translates to an invocation of . @@ -11752,7 +11752,7 @@ If `count` is not a positive number, this method returns an empty enumerable col The first argument of `predicate` represents the element to test. The second argument represents the zero-based index of the element within `source`. - The and methods are functional complements. Given a sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. + The and methods are functional complements. Given a collection sequence `coll` and a pure function `p`, concatenating the results of `coll.TakeWhile(p)` and `coll.SkipWhile(p)` yields the same sequence as `coll`. In Visual Basic query expression syntax, a `Take While` clause translates to an invocation of . diff --git a/xml/System/GC.xml b/xml/System/GC.xml index b13f93ac2eb..d160f1bb077 100644 --- a/xml/System/GC.xml +++ b/xml/System/GC.xml @@ -109,7 +109,7 @@ - +