Skip to content

Commit bfbe403

Browse files
author
Stjepan Glavina
committed
Fix tidy errors
1 parent 5350e22 commit bfbe403

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/slice/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,15 @@ pub trait SliceExt {
212212
#[stable(feature = "copy_from_slice", since = "1.9.0")]
213213
fn copy_from_slice(&mut self, src: &[Self::Item]) where Self::Item: Copy;
214214

215-
#[unstable(feature = "sort_unstable", issue = "40585")]
215+
#[stable(feature = "sort_unstable", since = "1.20.0")]
216216
fn sort_unstable(&mut self)
217217
where Self::Item: Ord;
218218

219-
#[unstable(feature = "sort_unstable", issue = "40585")]
219+
#[stable(feature = "sort_unstable", since = "1.20.0")]
220220
fn sort_unstable_by<F>(&mut self, compare: F)
221221
where F: FnMut(&Self::Item, &Self::Item) -> Ordering;
222222

223-
#[unstable(feature = "sort_unstable", issue = "40585")]
223+
#[stable(feature = "sort_unstable", since = "1.20.0")]
224224
fn sort_unstable_by_key<B, F>(&mut self, f: F)
225225
where F: FnMut(&Self::Item) -> B,
226226
B: Ord;

0 commit comments

Comments
 (0)