Move `unchecked_duration_subtraction` to pedantic

This commit is contained in:
Alex Macleod 2023-01-13 00:04:28 +00:00
parent 7f27e2e74e
commit 295225e9cd
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ declare_clippy_lint! {
/// [`Instant::now()`]: std::time::Instant::now; /// [`Instant::now()`]: std::time::Instant::now;
#[clippy::version = "1.65.0"] #[clippy::version = "1.65.0"]
pub UNCHECKED_DURATION_SUBTRACTION, pub UNCHECKED_DURATION_SUBTRACTION,
suspicious, pedantic,
"finds unchecked subtraction of a 'Duration' from an 'Instant'" "finds unchecked subtraction of a 'Duration' from an 'Instant'"
} }