From da7895002d84b1b6d3df0a1fa540d0fe4e85c38a 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 --- std/src/collections/hash/set.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/src/collections/hash/set.rs b/std/src/collections/hash/set.rs index de1431b1d..0a0c08eb1 100644 --- a/std/src/collections/hash/set.rs +++ b/std/src/collections/hash/set.rs @@ -588,7 +588,7 @@ where /// 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.