formatting fix

This commit is contained in:
Grzegorz Bartoszek 2019-01-21 11:14:34 +01:00
parent adce3ef966
commit 0a0792e535

View file

@ -130,7 +130,7 @@ fn parent_node_is_if_expr<'a, 'b>(expr: &Expr, cx: &LateContext<'a, 'b>) -> bool
if let rustc::hir::Node::Expr(e) = parent_node {
if let ExprKind::If(_,_,_) = e.node {
return true;
return true;
}
}