Skip to content

Commit c8741c6

Browse files
authored
Rollup merge of rust-lang#137576 - goffrie:setvalzst, r=lcnr
Don't doc-comment BTreeMap<K, SetValZST, A> This otherwise shows up in documentation as an empty impl block (worse, at the *top* of the docs above the public impls).
2 parents 8462d56 + 7a60c49 commit c8741c6

File tree

1 file changed

+1
-1
lines changed
  • library/alloc/src/collections/btree

1 file changed

+1
-1
lines changed

library/alloc/src/collections/btree/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ impl<K: Clone, V: Clone, A: Allocator + Clone> Clone for BTreeMap<K, V, A> {
289289
}
290290
}
291291

292-
/// Internal functionality for `BTreeSet`.
292+
// Internal functionality for `BTreeSet`.
293293
impl<K, A: Allocator + Clone> BTreeMap<K, SetValZST, A> {
294294
pub(super) fn replace(&mut self, key: K) -> Option<K>
295295
where

0 commit comments

Comments
 (0)