File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -725,7 +725,7 @@ where
725
725
/// The comparison function receives two key and value pairs to compare (you
726
726
/// can sort by keys or values or their combination as needed).
727
727
///
728
- /// Computes in **O(n log n + c)** time and **O(n)** space where *n* is
728
+ /// Computes in **O(n log n + c)** time where *n* is
729
729
/// the length of the map and *c* is the capacity. The sort is unstable.
730
730
pub fn sort_unstable_by < F > ( & mut self , mut cmp : F )
731
731
where
Original file line number Diff line number Diff line change @@ -596,7 +596,7 @@ where
596
596
597
597
/// Sort the set's values in place using the comparison funtion `cmp`.
598
598
///
599
- /// Computes in **O(n log n)** time and **O(n)** space . The sort is unstable.
599
+ /// Computes in **O(n log n)** time. The sort is unstable.
600
600
pub fn sort_unstable_by < F > ( & mut self , mut cmp : F )
601
601
where
602
602
F : FnMut ( & T , & T ) -> Ordering ,
You can’t perform that action at this time.
0 commit comments