File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -371,21 +371,21 @@ class Vec {
371
371
return get_unchecked_mut (::sus::marker::unsafe_fn, i);
372
372
}
373
373
374
- // / #[doc.inherit=[n]sus::[n]ops ::[r]Slice::[f]sort]
374
+ // / #[doc.inherit=[n]sus::[n]containers ::[r]Slice::[f]sort]
375
375
void sort () { as_mut ().sort (); }
376
376
377
- // / #[doc.inherit=[n]sus::[n]ops ::[r]Slice::[f]sort_by]
377
+ // / #[doc.inherit=[n]sus::[n]containers ::[r]Slice::[f]sort_by]
378
378
template <class F , int &...,
379
379
class R = std::invoke_result_t <F, const T&, const T&>>
380
380
requires (::sus::ops::Ordering<R>)
381
381
void sort_by (F compare) {
382
382
as_mut ().sort_by (sus::move (compare));
383
383
}
384
384
385
- // / #[doc.inherit=[n]sus::[n]ops ::[r]Slice::[f]sort_unstable]
385
+ // / #[doc.inherit=[n]sus::[n]containers ::[r]Slice::[f]sort_unstable]
386
386
void sort_unstable () { as_mut ().sort (); }
387
387
388
- // / #[doc.inherit=[n]sus::[n]ops ::[r]Slice::[f]sort_unstable_by]
388
+ // / #[doc.inherit=[n]sus::[n]containers ::[r]Slice::[f]sort_unstable_by]
389
389
template <class F , int &...,
390
390
class R = std::invoke_result_t <F, const T&, const T&>>
391
391
requires (::sus::ops::Ordering<R>)
You can’t perform that action at this time.
0 commit comments