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) } }