Remove allow(doc_markdown) in excessive_precision.rs

This commit is contained in:
Philipp Hansch 2018-12-07 22:47:12 +01:00
parent 041c49c1ed
commit a73d051227
No known key found for this signature in database
GPG Key ID: B6FA06A6E0E2665B

View File

@ -109,10 +109,9 @@ fn check(&self, sym: Symbol, fty: FloatTy) -> Option<String> {
}
}
#[allow(clippy::doc_markdown)]
/// Should we exclude the float because it has a `.0` or `.` suffix
/// Ex 1_000_000_000.0
/// Ex 1_000_000_000.
/// Ex `1_000_000_000.0`
/// Ex `1_000_000_000.`
fn dot_zero_exclusion(s: &str) -> bool {
if let Some(after_dec) = s.split('.').nth(1) {
let mut decpart = after_dec.chars().take_while(|c| *c != 'e' || *c != 'E');