Fix tidy errors

This commit is contained in:
Stjepan Glavina 2017-07-02 11:16:37 +02:00
parent 5350e22366
commit bfbe4039f8
1 changed files with 3 additions and 3 deletions

View File

@ -212,15 +212,15 @@ pub trait SliceExt {
#[stable(feature = "copy_from_slice", since = "1.9.0")] #[stable(feature = "copy_from_slice", since = "1.9.0")]
fn copy_from_slice(&mut self, src: &[Self::Item]) where Self::Item: Copy; 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) fn sort_unstable(&mut self)
where Self::Item: Ord; 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) fn sort_unstable_by<F>(&mut self, compare: F)
where F: FnMut(&Self::Item, &Self::Item) -> Ordering; 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) fn sort_unstable_by_key<B, F>(&mut self, f: F)
where F: FnMut(&Self::Item) -> B, where F: FnMut(&Self::Item) -> B,
B: Ord; B: Ord;