about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorAshley Mannix <ashleymannix@live.com.au>2019-09-09 08:02:26 +1000
committerAshley Mannix <ashleymannix@live.com.au>2019-09-09 08:05:32 +1000
commit91fd8efd265b60a635aff89d1c2d0a8aea45fdf9 (patch)
tree53becc19526de413917de44ec1c96fd6468d61df /src/libcore
parent2b8116dced2c6c5d02e1c4359e89dc0919d6001b (diff)
downloadrust-91fd8efd265b60a635aff89d1c2d0a8aea45fdf9.tar.gz
rust-91fd8efd265b60a635aff89d1c2d0a8aea45fdf9.zip
document the unstable iter_order_by library feature
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/traits/iterator.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/iter/traits/iterator.rs b/src/libcore/iter/traits/iterator.rs
index c09df3f7f22..266f1e6a781 100644
--- a/src/libcore/iter/traits/iterator.rs
+++ b/src/libcore/iter/traits/iterator.rs
@@ -2585,7 +2585,7 @@ pub trait Iterator {
     /// assert_eq!(xs.iter().cmp_by(&ys, |&x, &y| (x * x).cmp(&y)), Ordering::Equal);
     /// assert_eq!(xs.iter().cmp_by(&ys, |&x, &y| (2 * x).cmp(&y)), Ordering::Greater);
     /// ```
-    #[unstable(feature = "iter_order_by", issue = "0")]
+    #[unstable(feature = "iter_order_by", issue = "64295")]
     fn cmp_by<I, F>(mut self, other: I, mut cmp: F) -> Ordering
     where
         Self: Sized,
@@ -2668,7 +2668,7 @@ pub trait Iterator {
     ///     Some(Ordering::Greater)
     /// );
     /// ```
-    #[unstable(feature = "iter_order_by", issue = "0")]
+    #[unstable(feature = "iter_order_by", issue = "64295")]
     fn partial_cmp_by<I, F>(mut self, other: I, mut partial_cmp: F) -> Option<Ordering>
     where
         Self: Sized,
@@ -2733,7 +2733,7 @@ pub trait Iterator {
     ///
     /// assert!(xs.iter().eq_by(&ys, |&x, &y| x * x == y));
     /// ```
-    #[unstable(feature = "iter_order_by", issue = "0")]
+    #[unstable(feature = "iter_order_by", issue = "64295")]
     fn eq_by<I, F>(mut self, other: I, mut eq: F) -> bool
     where
         Self: Sized,