diff --git a/clippy_lints/src/types.rs b/clippy_lints/src/types.rs index 14f4ea154eb..09d5e6bd43d 100644 --- a/clippy_lints/src/types.rs +++ b/clippy_lints/src/types.rs @@ -786,7 +786,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnitArg { "passing a unit value to a function", "if you intended to pass a unit value, use a unit literal instead", "()".to_string(), - Applicability::MachineApplicable, + Applicability::MaybeIncorrect, ); } }