Description
GenericCollectionAssertions has SatisfyRespectively, which is not present in the more specialized StringCollectionAssertions - I would expect more specialized Assertions classes to add, but not remove functionality.
Seems like it could've happened elsewhere, but I don't have the time to track down any other instances.
Complete minimal example reproducing the issue
new object[] { }.Should().SatisfyRespectively(x => { }); //Should() is GenericCollectionAssertions
new string[] { }.Should().SatisfyRespectively(...) // does not exist, Should() is StringCollectionAssertions
Versions