Auto merge of #3511 - phansch:remove_allow_doc_markdown, r=phansch

Remove allow(doc_markdown) in excessive_precision.rs

Closes #3299
This commit is contained in:
bors 2018-12-10 19:21:25 +00:00
commit 0fd7fe9a77
1 changed files with 2 additions and 3 deletions

View File

@ -109,10 +109,9 @@ impl ExcessivePrecision {
}
}
#[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');