Remove allow(doc_markdown) in excessive_precision.rs
This commit is contained in:
parent
041c49c1ed
commit
a73d051227
1 changed files with 2 additions and 3 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue