Skip to content

Commit 083db64

Browse files
committed
std: Add a tracking issue for Peekable::is_empty
The listed tracking issue was hooked up to the wrong location by accident.
1 parent aed7dda commit 083db64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3679,7 +3679,7 @@ impl<I: Iterator> Peekable<I> {
36793679
///
36803680
/// assert_eq!(iter.is_empty(), true);
36813681
/// ```
3682-
#[unstable(feature = "peekable_is_empty", issue = "27701")]
3682+
#[unstable(feature = "peekable_is_empty", issue = "32111")]
36833683
#[inline]
36843684
pub fn is_empty(&mut self) -> bool {
36853685
self.peek().is_none()

0 commit comments

Comments
 (0)