]> git.lizzy.rs Git - rust.git/commitdiff
Update tracking issue number
authorVillSnow <vill.snow@gmail.com>
Sun, 28 Jun 2020 08:39:03 +0000 (17:39 +0900)
committerVillSnow <vill.snow@gmail.com>
Sun, 28 Jun 2020 08:39:03 +0000 (17:39 +0900)
src/libcore/slice/mod.rs

index 11561c392864ff97fcd9b89f7b3682f99719a121..07b45640a522505aff10968073d9a84d420fc5e0 100644 (file)
@@ -2688,7 +2688,7 @@ pub fn is_sorted_by_key<F, K>(&self, f: F) -> bool
     /// 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<P>(&self, mut pred: P) -> usize
     where
         P: FnMut(&T) -> bool,