Update library/std/src/collections/hash/set.rs

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

View File

@ -588,7 +588,7 @@ pub fn symmetric_difference<'a>(
/// Visits the values representing the intersection,
/// i.e., the values that are both in `self` and `other`.
///
/// Note: When an equal element is present in `self` and `other`
/// 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.