about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGeoffry Song <goffrie@gmail.com>2025-02-24 18:24:22 -0800
committerGitHub <noreply@github.com>2025-02-24 18:24:22 -0800
commit7a60c49c649a91e47ee3e093d3bff95847e5cf4c (patch)
tree78bd21e1a81253411887f040951d8d02b81e8fe5
parent617aad8c2e8783f6df8e5d1f8bb1e4bcdc70aa7b (diff)
downloadrust-7a60c49c649a91e47ee3e093d3bff95847e5cf4c.tar.gz
rust-7a60c49c649a91e47ee3e093d3bff95847e5cf4c.zip
Don't doc-comment BTreeMap<K, SetValZST, A>
-rw-r--r--library/alloc/src/collections/btree/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/collections/btree/map.rs b/library/alloc/src/collections/btree/map.rs
index 6d305386dbf..78b7da9d6b3 100644
--- a/library/alloc/src/collections/btree/map.rs
+++ b/library/alloc/src/collections/btree/map.rs
@@ -289,7 +289,7 @@ impl<K: Clone, V: Clone, A: Allocator + Clone> Clone for BTreeMap<K, V, A> {
     }
 }
 
-/// Internal functionality for `BTreeSet`.
+// Internal functionality for `BTreeSet`.
 impl<K, A: Allocator + Clone> BTreeMap<K, SetValZST, A> {
     pub(super) fn replace(&mut self, key: K) -> Option<K>
     where