Skip to content

Commit 8a6a9af

Browse files
committed
run rustfmt on libtest folder
1 parent 382ab92 commit 8a6a9af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libtest/stats.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#![allow(missing_docs)]
1212
#![allow(deprecated)] // Float
1313

14-
use std::cmp::Ordering::{self, Less, Greater, Equal};
14+
use std::cmp::Ordering::{self, Equal, Greater, Less};
1515
use std::mem;
1616

1717
fn local_cmp(x: f64, y: f64) -> Ordering {
@@ -35,7 +35,6 @@ fn local_sort(v: &mut [f64]) {
3535

3636
/// Trait that provides simple descriptive statistics on a univariate set of numeric samples.
3737
pub trait Stats {
38-
3938
/// Sum of the samples.
4039
///
4140
/// Note: this method sacrifices performance at the altar of accuracy

0 commit comments

Comments
 (0)