We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc93b6 commit b592cc6Copy full SHA for b592cc6
clippy_lints/src/matches/needless_match.rs
@@ -83,7 +83,7 @@ fn check_if_let(cx: &LateContext<'_>, if_let: &higher::IfLet<'_>) -> bool {
83
return false;
84
}
85
86
- // Recurrsively check for each `else if let` phrase,
+ // Recursively check for each `else if let` phrase,
87
if let Some(ref nested_if_let) = higher::IfLet::hir(cx, if_else) {
88
return check_if_let(cx, nested_if_let);
89
0 commit comments