We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67aca49 commit e6b1003Copy full SHA for e6b1003
library/alloc/src/collections/btree/map.rs
@@ -65,7 +65,7 @@ pub(super) const MIN_LEN: usize = node::MIN_LEN_AFTER_SPLIT;
65
/// any other key, as determined by the [`Ord`] trait, changes while it is in the map. This is
66
/// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code.
67
/// The behavior resulting from such a logic error is not specified, but will be encapsulated to the
68
-/// `BTreeSet` that observed the logic error and not result in undefined behavior. This could
+/// `BTreeMap` that observed the logic error and not result in undefined behavior. This could
69
/// include panics, incorrect results, aborts, memory leaks, and non-termination.
70
///
71
/// Iterators obtained from functions such as [`BTreeMap::iter`], [`BTreeMap::values`], or
0 commit comments