about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorStu Black <trurl@freeshell.org>2016-03-15 23:48:15 -0400
committerStu Black <trurl@freeshell.org>2016-03-15 23:48:15 -0400
commit2ddba6f361cc8c6c08a1d5a655b11d32935c5bda (patch)
tree937759c5f911a8941b73d8007e10266083928b6b /src/libstd
parent2f454be47a934c774cdfd0651193157d9b96bf71 (diff)
downloadrust-2ddba6f361cc8c6c08a1d5a655b11d32935c5bda.tar.gz
rust-2ddba6f361cc8c6c08a1d5a655b11d32935c5bda.zip
Use issue number from rust-lang/rust, not rust-lang/rfcs.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs4
1 files changed, 2 insertions, 2 deletions
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
     }