Skip to content

Commit 3569377

Browse files
committed
Auto merge of #23617 - steveklabnik:gh23564, r=Manishearth
Fixes #23564
2 parents 928e2e2 + 3d04cb3 commit 3569377

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libcollections/binary_heap.rs

+2
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,8 @@ impl<T: Ord> BinaryHeap<T> {
563563
pub fn is_empty(&self) -> bool { self.len() == 0 }
564564

565565
/// Clears the binary heap, returning an iterator over the removed elements.
566+
///
567+
/// The elements are removed in arbitrary order.
566568
#[inline]
567569
#[unstable(feature = "collections",
568570
reason = "matches collection reform specification, waiting for dust to settle")]

0 commit comments

Comments
 (0)