From 9bf5daca90b18f3211b2751f2089082c319d9ab5 Mon Sep 17 00:00:00 2001 From: Andrew Paseltiner Date: Tue, 7 Jun 2016 17:36:04 -0400 Subject: [PATCH] Update tracking issue for `{BTreeMap, BTreeSet}::{append, split_off}` --- src/libcollections/btree/map.rs | 4 ++-- src/libcollections/btree/set.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcollections/btree/map.rs b/src/libcollections/btree/map.rs index 26e71d2083320..43226d233687a 100644 --- a/src/libcollections/btree/map.rs +++ b/src/libcollections/btree/map.rs @@ -584,7 +584,7 @@ impl BTreeMap { /// assert_eq!(a[&5], "f"); /// ``` #[unstable(feature = "btree_append", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn append(&mut self, other: &mut Self) { // Do we have to append anything at all? if other.len() == 0 { @@ -938,7 +938,7 @@ impl BTreeMap { /// ``` #[unstable(feature = "btree_split_off", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn split_off(&mut self, key: &Q) -> Self where K: Borrow { diff --git a/src/libcollections/btree/set.rs b/src/libcollections/btree/set.rs index 765595be317c1..c47eb0b3fad45 100644 --- a/src/libcollections/btree/set.rs +++ b/src/libcollections/btree/set.rs @@ -576,7 +576,7 @@ impl BTreeSet { /// assert!(a.contains(&5)); /// ``` #[unstable(feature = "btree_append", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn append(&mut self, other: &mut Self) { self.map.append(&mut other.map); } @@ -613,7 +613,7 @@ impl BTreeSet { /// ``` #[unstable(feature = "btree_split_off", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn split_off(&mut self, key: &Q) -> Self where T: Borrow { BTreeSet { map: self.map.split_off(key) } }