about summary refs log tree commit diff
path: root/clippy_lints/src/mutable_debug_assertion.rs
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2020-01-31 10:42:31 +0100
committerflip1995 <hello@philkrones.com>2020-01-31 10:57:52 +0100
commit5ba4aa8ebab79ffff4cb621fa22a07d32ea41b1f (patch)
tree4772d79f2e2308e07035e5690ef606a00eec216f /clippy_lints/src/mutable_debug_assertion.rs
parent006f07f090894f09910fe6f15e5a670a955f8166 (diff)
downloadrust-5ba4aa8ebab79ffff4cb621fa22a07d32ea41b1f.tar.gz
rust-5ba4aa8ebab79ffff4cb621fa22a07d32ea41b1f.zip
Move debug_assertions_with_mut_call to nursery
Diffstat (limited to 'clippy_lints/src/mutable_debug_assertion.rs')
-rw-r--r--clippy_lints/src/mutable_debug_assertion.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/mutable_debug_assertion.rs b/clippy_lints/src/mutable_debug_assertion.rs
index 881f59bbabd..f0c5c95b1d4 100644
--- a/clippy_lints/src/mutable_debug_assertion.rs
+++ b/clippy_lints/src/mutable_debug_assertion.rs
@@ -28,7 +28,7 @@ declare_clippy_lint! {
     /// debug_assert!(take_a_mut_parameter(&mut 5));
     /// ```
     pub DEBUG_ASSERT_WITH_MUT_CALL,
-    correctness,
+    nursery,
     "mutable arguments in `debug_assert{,_ne,_eq}!`"
 }