about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authormitchmindtree <mitchell.nordine@gmail.com>2016-07-20 14:49:40 +1000
committermitchmindtree <mitchell.nordine@gmail.com>2016-07-20 14:49:40 +1000
commitaed2e5c1e5d1774fba671ba60ee6347a1d524f2e (patch)
tree78cef5d632eac7e8fba8c085cb1c6154f7bf5195 /src/libstd/sync
parentb02b38e1c4f7c8075c92d41e9e08bf2a20982f66 (diff)
downloadrust-aed2e5c1e5d1774fba671ba60ee6347a1d524f2e.tar.gz
rust-aed2e5c1e5d1774fba671ba60ee6347a1d524f2e.zip
Add the missing tracking issue field for #34931 to the receiver_try_iter stability attributes
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/mpsc/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index 2d2bded9f60..b862a594ed2 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -317,7 +317,7 @@ pub struct Iter<'a, T: 'a> {
 ///
 /// This Iterator will never block the caller in order to wait for data to
 /// become available. Instead, it will return `None`.
-#[unstable(feature = "receiver_try_iter")]
+#[unstable(feature = "receiver_try_iter", issue = "34931")]
 pub struct TryIter<'a, T: 'a> {
     rx: &'a Receiver<T>
 }
@@ -998,7 +998,7 @@ impl<T> Receiver<T> {
     /// It will return `None` if there are no more pending values or if the
     /// channel has hung up. The iterator will never `panic!` or block the
     /// user by waiting for values.
-    #[unstable(feature = "receiver_try_iter")]
+    #[unstable(feature = "receiver_try_iter", issue = "34931")]
     pub fn try_iter(&self) -> TryIter<T> {
         TryIter { rx: self }
     }
@@ -1098,7 +1098,7 @@ impl<'a, T> Iterator for Iter<'a, T> {
     fn next(&mut self) -> Option<T> { self.rx.recv().ok() }
 }
 
-#[unstable(feature = "receiver_try_iter")]
+#[unstable(feature = "receiver_try_iter", issue = "34931")]
 impl<'a, T> Iterator for TryIter<'a, T> {
     type Item = T;