Skip to content

Commit 35841ee

Browse files
authored
Auto merge of #34153 - apasel422:btree, r=alexcrichton
Update tracking issue for `{BTreeMap, BTreeSet}::{append, split_off}` r? @alexcrichton
2 parents 7d8e6dd + 9bf5dac commit 35841ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/libcollections/btree/map.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ impl<K: Ord, V> BTreeMap<K, V> {
584584
/// assert_eq!(a[&5], "f");
585585
/// ```
586586
#[unstable(feature = "btree_append", reason = "recently added as part of collections reform 2",
587-
issue = "19986")]
587+
issue = "34152")]
588588
pub fn append(&mut self, other: &mut Self) {
589589
// Do we have to append anything at all?
590590
if other.len() == 0 {
@@ -938,7 +938,7 @@ impl<K: Ord, V> BTreeMap<K, V> {
938938
/// ```
939939
#[unstable(feature = "btree_split_off",
940940
reason = "recently added as part of collections reform 2",
941-
issue = "19986")]
941+
issue = "34152")]
942942
pub fn split_off<Q: ?Sized + Ord>(&mut self, key: &Q) -> Self
943943
where K: Borrow<Q>
944944
{

src/libcollections/btree/set.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ impl<T: Ord> BTreeSet<T> {
576576
/// assert!(a.contains(&5));
577577
/// ```
578578
#[unstable(feature = "btree_append", reason = "recently added as part of collections reform 2",
579-
issue = "19986")]
579+
issue = "34152")]
580580
pub fn append(&mut self, other: &mut Self) {
581581
self.map.append(&mut other.map);
582582
}
@@ -613,7 +613,7 @@ impl<T: Ord> BTreeSet<T> {
613613
/// ```
614614
#[unstable(feature = "btree_split_off",
615615
reason = "recently added as part of collections reform 2",
616-
issue = "19986")]
616+
issue = "34152")]
617617
pub fn split_off<Q: ?Sized + Ord>(&mut self, key: &Q) -> Self where T: Borrow<Q> {
618618
BTreeSet { map: self.map.split_off(key) }
619619
}

0 commit comments

Comments
 (0)