bors 16d13a5a4b Auto merge of #6611 - pastchick3:master, r=flip1995
Fix the reversed suggestion message of `stable_sort_primitive`.

Now Clippy emits `stable_sort_primitive` warning as follows:

```
warning: used sort instead of sort_unstable to sort primitive type `usize`
  --> src\asm.rs:41:13
   |
41 |             self.successors.sort();
   |             ^^^^^^^^^^^^^^^^^^^^^^ help: try: `self.successors.sort_unstable()`
   |
   = note: `#[warn(clippy::stable_sort_primitive)]` on by default
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
```

I think the position of `sort` and `sort_unstable` in the first line should be reversed.

changelog: Fix the reversed suggestion message of `stable_sort_primitive`.
2021-01-21 14:12:43 +00:00
..
2021-01-19 12:58:48 +13:00
2021-01-08 14:50:00 -06:00
2021-01-07 18:54:12 -03:00
2021-01-12 20:32:33 -05:00
2021-01-04 18:41:42 +01:00
2021-01-07 18:54:12 -03:00
2021-01-07 18:54:12 -03:00
2021-01-20 18:14:09 +09:00
2020-12-30 09:50:02 -05:00
2021-01-07 18:54:12 -03:00
2021-01-15 16:41:17 -05:00
2021-01-14 22:02:04 -05:00
2021-01-08 14:50:00 -06:00
2021-01-07 18:54:12 -03:00
2021-01-20 18:03:06 +09:00
2021-01-08 14:50:00 -06:00