Skip to content

Commit 7d0148f

Browse files
committed
forgot to run cargo test
1 parent eaa835d commit 7d0148f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/excessive_nesting.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ impl<'conf, 'cx> Visitor<'_> for NestingVisitor<'conf, 'cx> {
204204
ExprKind::Repeat(expr, anon_const) => {
205205
self.visit_expr(expr);
206206
self.visit_expr(&anon_const.value);
207-
}
207+
},
208208
ExprKind::If(expr, block, else_expr) => {
209209
self.visit_expr(expr);
210210
self.visit_block(block);

0 commit comments

Comments
 (0)