diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs index 11561c392864f..07b45640a5225 100644 --- a/src/libcore/slice/mod.rs +++ b/src/libcore/slice/mod.rs @@ -2688,7 +2688,7 @@ impl [T] { /// assert!(v[..i].iter().all(|&x| x < 5)); /// assert!(v[i..].iter().all(|&x| !(x < 5))); /// ``` - #[unstable(feature = "partition_point", reason = "new API", issue = "99999")] + #[unstable(feature = "partition_point", reason = "new API", issue = "73831")] pub fn partition_point

(&self, mut pred: P) -> usize where P: FnMut(&T) -> bool,