Apply suggestions from code review

Co-authored-by: David Tolnay <dtolnay@gmail.com>
This commit is contained in:
nzrq 2022-06-06 17:14:58 -04:00 committed by GitHub
parent fc4e8c7f0d
commit 7d114c7713
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -590,8 +590,9 @@ where
///
/// When an equal element is present in `self` and `other`
/// then the resulting `Intersection` may yield references to
/// one or the other, which will be visible in properties of `T`
/// not participating in the `Eq` implementation.
/// one or the other. This can be relevant if `T` contains fields which
/// are not compared by its `Eq` implementation, and may hold different
/// value between the two equal copies of `T` in the two sets.
///
/// # Examples
///