Skip to content

Commit 2ddba6f

Browse files
committed
Use issue number from rust-lang/rust, not rust-lang/rfcs.
1 parent 2f454be commit 2ddba6f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/libcollections/btree/map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1467,7 +1467,7 @@ impl<'a, K: Ord, V> Entry<'a, K, V> {
14671467
impl<'a, K: Ord, V> VacantEntry<'a, K, V> {
14681468
/// Gets a reference to the key that would be used when inserting a value
14691469
/// through the VacantEntry.
1470-
#[unstable(feature = "map_entry_keys", issue = "1541")]
1470+
#[unstable(feature = "map_entry_keys", issue = "32281")]
14711471
pub fn key(&self) -> &K {
14721472
&self.key
14731473
}
@@ -1517,7 +1517,7 @@ impl<'a, K: Ord, V> VacantEntry<'a, K, V> {
15171517

15181518
impl<'a, K: Ord, V> OccupiedEntry<'a, K, V> {
15191519
/// Gets a reference to the key in the entry.
1520-
#[unstable(feature = "map_entry_keys", issue = "1541")]
1520+
#[unstable(feature = "map_entry_keys", issue = "32281")]
15211521
pub fn key(&self) -> &K {
15221522
self.handle.reborrow().into_kv().0
15231523
}

src/libstd/collections/hash/map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1555,7 +1555,7 @@ impl<'a, K, V> Entry<'a, K, V> {
15551555

15561556
impl<'a, K, V> OccupiedEntry<'a, K, V> {
15571557
/// Gets a reference to the key in the entry.
1558-
#[unstable(feature = "map_entry_keys", issue = "1541")]
1558+
#[unstable(feature = "map_entry_keys", issue = "32281")]
15591559
pub fn key(&self) -> &K {
15601560
self.elem.read().0
15611561
}
@@ -1597,7 +1597,7 @@ impl<'a, K, V> OccupiedEntry<'a, K, V> {
15971597
impl<'a, K: 'a, V: 'a> VacantEntry<'a, K, V> {
15981598
/// Gets a reference to the key that would be used when inserting a value
15991599
/// through the VacantEntry.
1600-
#[unstable(feature = "map_entry_keys", issue = "1541")]
1600+
#[unstable(feature = "map_entry_keys", issue = "32281")]
16011601
pub fn key(&self) -> &K {
16021602
&self.key
16031603
}

0 commit comments

Comments
 (0)