about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorKang Seonghoon <public+git@mearie.org>2014-03-06 16:35:12 +0900
committerKang Seonghoon <public+git@mearie.org>2014-03-06 20:19:14 +0900
commit1c52c81846246e135557f1aa6db5bef4140c8717 (patch)
tree01f1b6cf88fc45a578a113935b833be52c0c790c /src/libextra
parent14c620719c06fcb3222b95d0d1505306506efb86 (diff)
fix typos with with repeated words, just like this sentence.
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/stats.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/stats.rs b/src/libextra/stats.rs
index 23e3e104f16..d67e8f85ba9 100644
--- a/src/libextra/stats.rs
+++ b/src/libextra/stats.rs
@@ -103,7 +103,7 @@ pub trait Stats {
     fn median_abs_dev_pct(self) -> f64;
 
     /// Percentile: the value below which `pct` percent of the values in `self` fall. For example,
-    /// percentile(95.0) will return the value `v` such that that 95% of the samples `s` in `self`
+    /// percentile(95.0) will return the value `v` such that 95% of the samples `s` in `self`
     /// satisfy `s <= v`.
     ///
     /// Calculated by linear interpolation between closest ranks.