From fc4e8c7f0d4611a4fce40b0e991c03fbe349af04 Mon Sep 17 00:00:00 2001 From: nzrq <42440961+nzrq@users.noreply.github.com> Date: Sat, 4 Jun 2022 20:03:55 -0400 Subject: [PATCH] Update library/std/src/collections/hash/set.rs Co-authored-by: David Tolnay --- library/std/src/collections/hash/set.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/collections/hash/set.rs b/library/std/src/collections/hash/set.rs index de1431b1dba..0a0c08eb1e9 100644 --- a/library/std/src/collections/hash/set.rs +++ b/library/std/src/collections/hash/set.rs @@ -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.