diff --git a/xml/System.Collections.Generic/ICollection`1.xml b/xml/System.Collections.Generic/ICollection`1.xml
index a055ee9dc87..10cc859a867 100644
--- a/xml/System.Collections.Generic/ICollection`1.xml
+++ b/xml/System.Collections.Generic/ICollection`1.xml
@@ -249,7 +249,7 @@
uses , whereas allows the user to specify the implementation to use for comparing keys.
+ Implementations can vary in how they determine equality of objects; for example, uses , whereas allows the user to specify the implementation to use for comparing keys.
]]>
@@ -459,7 +459,7 @@
uses , whereas, allows the user to specify the implementation to use for comparing keys.
+ Implementations can vary in how they determine equality of objects; for example, uses , whereas, allows the user to specify the implementation to use for comparing keys.
In collections of contiguous elements, such as lists, the elements that follow the removed element move up to occupy the vacated spot. If the collection is indexed, the indexes of the elements that are moved are also updated. This behavior does not apply to collections where elements are conceptually grouped into buckets, such as a hash table.
diff --git a/xml/System.Collections.Generic/List`1.xml b/xml/System.Collections.Generic/List`1.xml
index eeb188fe354..d1bf6e89a72 100644
--- a/xml/System.Collections.Generic/List`1.xml
+++ b/xml/System.Collections.Generic/List`1.xml
@@ -1036,7 +1036,7 @@
method for `T` (the type of values in the list).
+ This method determines equality using the default equality comparer for `T`, the type of values in the list.
This method performs a linear search; therefore, this method is an O(*n*) operation, where *n* is .
@@ -3411,7 +3411,7 @@ Public Function StartsWith(e As Employee) As Boolean
generic interface, the equality comparer is the method of that interface; otherwise, the default equality comparer is .
+ This method determines equality using the default equality comparer for `T`, the type of values in the list.
This method performs a linear search; therefore, this method is an O(*n*) operation, where *n* is .
diff --git a/xml/System/Array.xml b/xml/System/Array.xml
index 22586a8461c..b2ed4a6f8e5 100644
--- a/xml/System/Array.xml
+++ b/xml/System/Array.xml
@@ -5574,7 +5574,7 @@
method, that override is called.
+ This method searches all the elements of a one-dimensional array for `value`. To determine whether `value` exists in `array`, the method performs an equality comparison by using the default equality comparer .
Because most arrays have a lower bound of zero, this method generally returns -1 if`value` isn't found. In the rare case that the lower bound of the array is equal to (0x80000000) and `value` isn't found, this method returns (0x7FFFFFFF).
@@ -5673,7 +5673,7 @@
method, that override is called.
+ This method searches a one-dimensional array from the element at index `startIndex` to the last element. To determine whether `value` exists in `array`, the method performs an equality comparison by using the default equality comparer .
Because most arrays have a lower bound of zero, this method generally returns -1 if `value` isn't found. In the rare case that the lower bound of the array is equal to (0x80000000) and `value` isn't found, this method returns (0x7FFFFFFF).
@@ -5783,7 +5783,7 @@
method, that override is called.
+ This method searches the elements of a one-dimensional array from `startIndex` to `startIndex` plus `count` minus 1, if `count` is greater than 0. To determine whether `value` exists in `array`, the method performs an equality comparison by using the default equality comparer .
Because most arrays have a lower bound of zero, this method generally returns -1 when `value` isn't found. In the rare case that the lower bound of the array is equal to (0x80000000) and `value` isn't found, this method returns (0x7FFFFFFF).
@@ -5889,7 +5889,7 @@
method, that override is called.
+ This method searches all the elements of a one-dimensional array for `value`. To determine whether `value` exists in `array`, the method performs an equality comparison by using the default equality comparer .
This method is an O(`n`) operation, where `n` is the of `array`.
@@ -5975,7 +5975,7 @@
method, that override is called.
+ This method searches a one-dimensional array from the element at `startIndex` to the end of the array. To determine whether `value` exists in `array`, the method performs an equality comparison by using the default equality comparer .
If `startIndex` equals ,the method returns -1. If `startIndex` is greater than , the method throws an .
@@ -6067,7 +6067,7 @@
method, that override is called.
+ This method searches the elements of a one-dimensional array from `startIndex` to `startIndex` plus `count` minus 1, if `count` is greater than 0. To determine whether `value` exists in `array`, the method performs an equality comparison by using the default equality comparer .
If `startIndex` equals , the method returns -1. If `startIndex` is greater than , the method throws an .