Don't doc-comment BTreeMap<K, SetValZST, A>

This commit is contained in:
Geoffry Song 2025-02-24 18:24:22 -08:00 committed by GitHub
parent 617aad8c2e
commit 7a60c49c64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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