Skip to content

Commit 54dc533

Browse files
authored
Add a tracking issue
1 parent f2cb47a commit 54dc533

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/binary_heap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ impl<'a, T: Ord> DerefMut for PeekMut<'a, T> {
254254

255255
impl<'a, T: Ord> PeekMut<'a, T> {
256256
/// Removes the peeked value from the heap and returns it.
257-
#[unstable(feature = "binary_heap_peek_mut_pop", issue = "0")]
257+
#[unstable(feature = "binary_heap_peek_mut_pop", issue = "38863")]
258258
pub fn pop(mut this: PeekMut<'a, T>) -> T {
259259
let value = this.heap.pop().unwrap();
260260
this.sift = false;

0 commit comments

Comments
 (0)