diff --git a/Src/FluentAssertions/Collections/StringCollectionAssertions.cs b/Src/FluentAssertions/Collections/StringCollectionAssertions.cs index 3c202e78e4..5ce49006b8 100644 --- a/Src/FluentAssertions/Collections/StringCollectionAssertions.cs +++ b/Src/FluentAssertions/Collections/StringCollectionAssertions.cs @@ -47,7 +47,8 @@ public StringCollectionAssertions(TCollection actualValue) /// /// Expects the current collection to contain all the same elements in the same order as the collection identified by - /// . Elements are compared using their . + /// . Elements are compared using their . To ignore + /// the element order, use instead. /// /// An with the expected elements. public new AndConstraint Equal(params string[] expected) @@ -57,7 +58,8 @@ public new AndConstraint Equal(params string[] expected) /// /// Expects the current collection to contain all the same elements in the same order as the collection identified by - /// . Elements are compared using their . + /// . Elements are compared using their . To ignore + /// the element order, use instead. /// /// An with the expected elements. public AndConstraint Equal(IEnumerable expected) @@ -69,7 +71,8 @@ public AndConstraint Equal(IEnumerable expected) /// Asserts that a collection of string is equivalent to another collection of strings. /// /// - /// The two collections are equivalent when they both contain the same strings in any order. + /// The two collections are equivalent when they both contain the same strings in any order. To assert that the elements + /// are in the same order, use instead. /// public AndConstraint BeEquivalentTo(params string[] expectation) { @@ -80,7 +83,8 @@ public AndConstraint BeEquivalentTo(params string[] expectation) /// Asserts that a collection of objects is equivalent to another collection of objects. /// /// - /// The two collections are equivalent when they both contain the same strings in any order. + /// The two collections are equivalent when they both contain the same strings in any order. To assert that the elements + /// are in the same order, use instead. /// /// An with the expected elements. /// @@ -99,7 +103,8 @@ public AndConstraint BeEquivalentTo(IEnumerable expectation /// Asserts that a collection of objects is equivalent to another collection of objects. /// /// - /// The two collections are equivalent when they both contain the same strings in any order. + /// The two collections are equivalent when they both contain the same strings in any order. To assert that the elements + /// are in the same order, use instead. /// /// An with the expected elements. ///