Skip to content

Commit

Permalink
Update tracking issue number
Browse files Browse the repository at this point in the history
  • Loading branch information
VillSnow committed Jun 28, 2020
1 parent d720a19 commit 60f2ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/slice/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 60f2ba2

Please sign in to comment.