Skip to content

Commit

Permalink
Auto merge of rust-lang#40121 - king6cong:fix-typo, r=apasel422
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
bors committed Feb 27, 2017
2 parents cb1f649 + c01a6fe commit 0ed75e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libtest/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ impl Stats for [f64] {
local_sort(&mut tmp);
let first = 25f64;
let a = percentile_of_sorted(&tmp, first);
let secound = 50f64;
let b = percentile_of_sorted(&tmp, secound);
let second = 50f64;
let b = percentile_of_sorted(&tmp, second);
let third = 75f64;
let c = percentile_of_sorted(&tmp, third);
(a, b, c)
Expand Down

0 comments on commit 0ed75e1

Please sign in to comment.