]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/if_not_else.rs
Merge remote-tracking branch 'upstream/master' into rustup
[rust.git] / clippy_lints / src / if_not_else.rs
index 271df5b03e385071b2ebfb5cdf3001cbb88156ac..b86d2e766566bd16391dde7b738d288d873050ac 100644 (file)
@@ -60,7 +60,8 @@ fn check_expr(&mut self, cx: &EarlyContext<'_>, item: &Expr) {
                             cx,
                             IF_NOT_ELSE,
                             item.span,
-                            "Unnecessary boolean `not` operation",
+                            "unnecessary boolean `not` operation",
+                            None,
                             "remove the `!` and swap the blocks of the `if`/`else`",
                         );
                     },
@@ -69,7 +70,8 @@ fn check_expr(&mut self, cx: &EarlyContext<'_>, item: &Expr) {
                             cx,
                             IF_NOT_ELSE,
                             item.span,
-                            "Unnecessary `!=` operation",
+                            "unnecessary `!=` operation",
+                            None,
                             "change to `==` and swap the blocks of the `if`/`else`",
                         );
                     },