mirror of
https://github.com/rust-lang/rust
synced 2024-11-02 13:50:48 +00:00
Fix tidy errors
This commit is contained in:
parent
5350e22366
commit
bfbe4039f8
1 changed files with 3 additions and 3 deletions
|
@ -212,15 +212,15 @@ unsafe fn get_unchecked_mut<I>(&mut self, index: I) -> &mut I::Output
|
|||
#[stable(feature = "copy_from_slice", since = "1.9.0")]
|
||||
fn copy_from_slice(&mut self, src: &[Self::Item]) where Self::Item: Copy;
|
||||
|
||||
#[unstable(feature = "sort_unstable", issue = "40585")]
|
||||
#[stable(feature = "sort_unstable", since = "1.20.0")]
|
||||
fn sort_unstable(&mut self)
|
||||
where Self::Item: Ord;
|
||||
|
||||
#[unstable(feature = "sort_unstable", issue = "40585")]
|
||||
#[stable(feature = "sort_unstable", since = "1.20.0")]
|
||||
fn sort_unstable_by<F>(&mut self, compare: F)
|
||||
where F: FnMut(&Self::Item, &Self::Item) -> Ordering;
|
||||
|
||||
#[unstable(feature = "sort_unstable", issue = "40585")]
|
||||
#[stable(feature = "sort_unstable", since = "1.20.0")]
|
||||
fn sort_unstable_by_key<B, F>(&mut self, f: F)
|
||||
where F: FnMut(&Self::Item) -> B,
|
||||
B: Ord;
|
||||
|
|
Loading…
Reference in a new issue