about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/collections/hash/set.rs2
1 files changed, 1 insertions, 1 deletions
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 @@ 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.