about summary refs log tree commit diff
path: root/src/liballoc
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/liballoc
parent78102377d03b476ab39c9103c519afc9e5d79e01 (diff)
downloadrust-db0c39fba5d596e286238c21b11b9aa9e1701b5b.tar.gz
rust-db0c39fba5d596e286238c21b11b9aa9e1701b5b.zip
Change issue number to point to tracking issue
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/collections/btree/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/collections/btree/map.rs b/src/liballoc/collections/btree/map.rs
index dd2f0fd4c0f..a76525e6bea 100644
--- a/src/liballoc/collections/btree/map.rs
+++ b/src/liballoc/collections/btree/map.rs
@@ -2378,7 +2378,7 @@ impl<'a, K: Ord, 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.