Skip to content

Commit

Permalink
remove rustfmt-induced spurious trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Apr 15, 2020
1 parent c0247c8 commit 49b745f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_mir/transform/check_consts/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ impl Visitor<'tcx> for Validator<'_, 'mir, 'tcx> {
return;
}
_ => {
span_bug!(terminator.source_info.span, "invalid callee of type {:?}", fn_ty,)
span_bug!(terminator.source_info.span, "invalid callee of type {:?}", fn_ty)
}
};

Expand Down

0 comments on commit 49b745f

Please sign in to comment.