diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-10-27 15:37:07 -0700 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-10-28 08:54:21 -0700 |
| commit | e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5 (patch) | |
| tree | 8d1fcc64b2219b49b255f92f1d2c4087200d8930 /src/libtest | |
| parent | 58dc0a05abb98ae2db65ca20e70f3bab51f8bf92 (diff) | |
| download | rust-e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5.tar.gz rust-e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5.zip | |
Update code with new lint names
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/stats.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtest/stats.rs b/src/libtest/stats.rs index 72c61f3afc7..a39769d0fa4 100644 --- a/src/libtest/stats.rs +++ b/src/libtest/stats.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![allow(missing_doc)] +#![allow(missing_docs)] use std::collections::hashmap; use std::collections::hashmap::{Occupied, Vacant}; @@ -128,7 +128,7 @@ pub trait Stats <T: FloatMath + FromPrimitive>{ /// Extracted collection of all the summary statistics of a sample set. #[deriving(Clone, PartialEq)] -#[allow(missing_doc)] +#[allow(missing_docs)] pub struct Summary<T> { pub sum: T, pub min: T, |
