diff options
| author | VillSnow <vill.snow@gmail.com> | 2020-06-28 17:39:03 +0900 |
|---|---|---|
| committer | VillSnow <vill.snow@gmail.com> | 2020-06-28 17:39:03 +0900 |
| commit | 60f2ba24031b52d3363e180dd7ad1c07608c6917 (patch) | |
| tree | b63d6de9034154bc40c6831423e8b52a5e1f21b6 /src/libcore | |
| parent | d720a19e2a0526794999997db399dd5d7521bd78 (diff) | |
| download | rust-60f2ba24031b52d3363e180dd7ad1c07608c6917.tar.gz rust-60f2ba24031b52d3363e180dd7ad1c07608c6917.zip | |
Update tracking issue number
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/slice/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs index 11561c39286..07b45640a52 100644 --- a/src/libcore/slice/mod.rs +++ b/src/libcore/slice/mod.rs @@ -2688,7 +2688,7 @@ impl<T> [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<P>(&self, mut pred: P) -> usize where P: FnMut(&T) -> bool, |
