From df2d334822e4cefada9dff2afb45d7920ce5e85e Mon Sep 17 00:00:00 2001 From: youngspe Date: Sat, 20 Apr 2024 15:32:39 -0700 Subject: [PATCH] Fix incorrect xref in StructuralComparisons.xml The remarks for `StructuralComparisons.StructuralEqualityComparer` incorrectly state the property returns an `IComparer` object, when it actually returns an `IEqualityComparer`. --- xml/System.Collections/StructuralComparisons.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Collections/StructuralComparisons.xml b/xml/System.Collections/StructuralComparisons.xml index 1d57bb0759e..86677bdac42 100644 --- a/xml/System.Collections/StructuralComparisons.xml +++ b/xml/System.Collections/StructuralComparisons.xml @@ -163,7 +163,7 @@ object returned by this property is passed to the equality comparison method of a collection object, such as or , its method is called for each member of an array or for each component of a tuple. This implementation of the method behaves as follows when it compares each item of a collection object with the corresponding item of another collection object: + When the object returned by this property is passed to the equality comparison method of a collection object, such as or , its method is called for each member of an array or for each component of a tuple. This implementation of the method behaves as follows when it compares each item of a collection object with the corresponding item of another collection object: - If both items are `null`, it considers the two items to be equal.