about summary refs log tree commit diff
path: root/src/libstd/collections
diff options
context:
space:
mode:
authorChai T. Rex <ChaiTRex@users.noreply.github.com>2020-04-11 08:46:12 -0400
committerChai T. Rex <ChaiTRex@users.noreply.github.com>2020-04-11 08:46:12 -0400
commitdb0c39fba5d596e286238c21b11b9aa9e1701b5b (patch)
tree943b004c34ed129e322d4b837593637aba90d949 /src/libstd/collections
parent78102377d03b476ab39c9103c519afc9e5d79e01 (diff)
downloadrust-db0c39fba5d596e286238c21b11b9aa9e1701b5b.tar.gz
rust-db0c39fba5d596e286238c21b11b9aa9e1701b5b.zip
Change issue number to point to tracking issue
Diffstat (limited to 'src/libstd/collections')
-rw-r--r--src/libstd/collections/hash/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index e1f24506457..706b388f783 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -1943,7 +1943,7 @@ impl<'a, K, V> Entry<'a, K, V> {
         }
     }
 
-    #[unstable(feature = "or_insert_with_key", issue = "70996")]
+    #[unstable(feature = "or_insert_with_key", issue = "71024")]
     /// Ensures a value is in the entry by inserting, if empty, the result of the default function,
     /// which takes the key as its argument, and returns a mutable reference to the value in the
     /// entry.