From 2ddba6f361cc8c6c08a1d5a655b11d32935c5bda Mon Sep 17 00:00:00 2001 From: Stu Black Date: Tue, 15 Mar 2016 23:48:15 -0400 Subject: [PATCH] Use issue number from rust-lang/rust, not rust-lang/rfcs. --- src/libcollections/btree/map.rs | 4 ++-- src/libstd/collections/hash/map.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcollections/btree/map.rs b/src/libcollections/btree/map.rs index 04c57111064..7819c7ef796 100644 --- a/src/libcollections/btree/map.rs +++ b/src/libcollections/btree/map.rs @@ -1467,7 +1467,7 @@ impl<'a, K: Ord, V> Entry<'a, K, V> { impl<'a, K: Ord, V> VacantEntry<'a, K, V> { /// Gets a reference to the key that would be used when inserting a value /// through the VacantEntry. - #[unstable(feature = "map_entry_keys", issue = "1541")] + #[unstable(feature = "map_entry_keys", issue = "32281")] pub fn key(&self) -> &K { &self.key } @@ -1517,7 +1517,7 @@ impl<'a, K: Ord, V> VacantEntry<'a, K, V> { impl<'a, K: Ord, V> OccupiedEntry<'a, K, V> { /// Gets a reference to the key in the entry. - #[unstable(feature = "map_entry_keys", issue = "1541")] + #[unstable(feature = "map_entry_keys", issue = "32281")] pub fn key(&self) -> &K { self.handle.reborrow().into_kv().0 } diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs index 9511133dda5..56d95401a9a 100644 --- a/src/libstd/collections/hash/map.rs +++ b/src/libstd/collections/hash/map.rs @@ -1555,7 +1555,7 @@ impl<'a, K, V> Entry<'a, K, V> { impl<'a, K, V> OccupiedEntry<'a, K, V> { /// Gets a reference to the key in the entry. - #[unstable(feature = "map_entry_keys", issue = "1541")] + #[unstable(feature = "map_entry_keys", issue = "32281")] pub fn key(&self) -> &K { self.elem.read().0 } @@ -1597,7 +1597,7 @@ impl<'a, K, V> OccupiedEntry<'a, K, V> { impl<'a, K: 'a, V: 'a> VacantEntry<'a, K, V> { /// Gets a reference to the key that would be used when inserting a value /// through the VacantEntry. - #[unstable(feature = "map_entry_keys", issue = "1541")] + #[unstable(feature = "map_entry_keys", issue = "32281")] pub fn key(&self) -> &K { &self.key }