From 774863041c1878ab7fb6e27c1c61c04de0e25bc8 Mon Sep 17 00:00:00 2001 From: Centri3 <114838443+Centri3@users.noreply.github.com> Date: Tue, 13 Jun 2023 13:12:11 -0500 Subject: [PATCH] Make it `Unspecified` --- clippy_lints/src/no_effect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/no_effect.rs b/clippy_lints/src/no_effect.rs index a4c7da7e48db..74ad1dad5d91 100644 --- a/clippy_lints/src/no_effect.rs +++ b/clippy_lints/src/no_effect.rs @@ -121,7 +121,7 @@ fn check_no_effect(cx: &LateContext<'_>, stmt: &Stmt<'_>) -> bool { stmt.span.shrink_to_lo(), "did you mean to return it?", "return ", - Applicability::MaybeIncorrect, + Applicability::Unspecified, ); } }