about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-03-07 16:35:09 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-03-11 22:09:58 -0800
commit083db64d9050ae6f92628aa869171ac4affb016f (patch)
treeab407ef1fdcc8a3d591bd1e2d94065f490a1da4d /src/libcore
parentaed7ddae8ea7f549dc2d493fda49dfa49de429b7 (diff)
downloadrust-083db64d9050ae6f92628aa869171ac4affb016f.tar.gz
rust-083db64d9050ae6f92628aa869171ac4affb016f.zip
std: Add a tracking issue for Peekable::is_empty
The listed tracking issue was hooked up to the wrong location by accident.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index 06821ff94f7..dbfa876bf77 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -3679,7 +3679,7 @@ impl<I: Iterator> Peekable<I> {
     ///
     /// assert_eq!(iter.is_empty(), true);
     /// ```
-    #[unstable(feature = "peekable_is_empty", issue = "27701")]
+    #[unstable(feature = "peekable_is_empty", issue = "32111")]
     #[inline]
     pub fn is_empty(&mut self) -> bool {
         self.peek().is_none()