Skip to content

Commit 7f1fbea

Browse files
author
Gaurav Saxena
committed
added semicolons for return statements
1 parent af00f3f commit 7f1fbea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ fn rewrite_match(context: &RewriteContext,
812812
fn arm_start_pos(arm: &ast::Arm) -> BytePos {
813813
let &ast::Arm { ref attrs, ref pats, .. } = arm;
814814
if !attrs.is_empty() {
815-
return attrs[0].span.lo
815+
return attrs[0].span.lo;
816816
}
817817

818818
pats[0].span.lo

0 commit comments

Comments
 (0)