Skip to content

Commit

Permalink
Run 'cargo fmt'
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Mar 9, 2020
1 parent 198b140 commit f626aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pin-project-internal/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn replace_stmt(stmt: &mut Stmt, mutability: Mutability) -> Result<bool> {
match stmt {
Stmt::Expr(Expr::Match(expr)) | Stmt::Semi(Expr::Match(expr), _) => {
Context::new(mutability).replace_expr_match(expr);
return Ok(true)
return Ok(true);
}
Stmt::Expr(Expr::If(expr_if)) => {
if let Expr::Let(ref mut expr) = &mut *expr_if.cond {
Expand Down

0 comments on commit f626aa8

Please sign in to comment.