about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2017-01-05 19:36:35 -0800
committerGitHub <noreply@github.com>2017-01-05 19:36:35 -0800
commit54dc533494bba8256dcd7c54597fb1d42ef070ab (patch)
treebd238a39f34443a1b35e876cb7f20be52ba49d43
parentf2cb47adf95171e48a9f918aae00193a7d36c7c0 (diff)
downloadrust-54dc533494bba8256dcd7c54597fb1d42ef070ab.tar.gz
rust-54dc533494bba8256dcd7c54597fb1d42ef070ab.zip
Add a tracking issue
-rw-r--r--src/libcollections/binary_heap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/binary_heap.rs b/src/libcollections/binary_heap.rs
index c53b34d589b..7d245f79f69 100644
--- a/src/libcollections/binary_heap.rs
+++ b/src/libcollections/binary_heap.rs
@@ -254,7 +254,7 @@ impl<'a, T: Ord> DerefMut for PeekMut<'a, T> {
 
 impl<'a, T: Ord> PeekMut<'a, T> {
     /// Removes the peeked value from the heap and returns it.
-    #[unstable(feature = "binary_heap_peek_mut_pop", issue = "0")]
+    #[unstable(feature = "binary_heap_peek_mut_pop", issue = "38863")]
     pub fn pop(mut this: PeekMut<'a, T>) -> T {
         let value = this.heap.pop().unwrap();
         this.sift = false;