Skip to content

Commit

Permalink
run rustfmt on libtest folder
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasreddy committed Jun 5, 2016
1 parent 382ab92 commit 8a6a9af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libtest/stats.rs
Expand Up @@ -11,7 +11,7 @@
#![allow(missing_docs)]
#![allow(deprecated)] // Float

use std::cmp::Ordering::{self, Less, Greater, Equal};
use std::cmp::Ordering::{self, Equal, Greater, Less};
use std::mem;

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

/// Trait that provides simple descriptive statistics on a univariate set of numeric samples.
pub trait Stats {

/// Sum of the samples.
///
/// Note: this method sacrifices performance at the altar of accuracy
Expand Down

0 comments on commit 8a6a9af

Please sign in to comment.