Skip to content

Commit

Permalink
result_map_or_into: fix dogfood_clippy error => {h,l}int
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrtorres committed Apr 4, 2020
1 parent 2533f56 commit 325d0b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clippy_lints/src/methods/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2559,7 +2559,7 @@ fn lint_map_or_none<'a, 'tcx>(
return;
}

let (lint, msg, instead, hint) = {
let (lint_name, msg, instead, hint) = {
let default_arg_is_none = if let hir::ExprKind::Path(ref qpath) = map_or_args[1].kind {
match_qpath(qpath, &paths::OPTION_NONE)
} else {
Expand Down Expand Up @@ -2606,7 +2606,7 @@ fn lint_map_or_none<'a, 'tcx>(

span_lint_and_sugg(
cx,
lint,
lint_name,
expr.span,
msg,
instead,
Expand Down

0 comments on commit 325d0b6

Please sign in to comment.