Skip to content

Commit 35209cb

Browse files
committed
fix long line, r=tidypolice.
1 parent 76dc781 commit 35209cb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/libsyntax/ext/deriving.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -710,9 +710,10 @@ fn expand_deriving_eq_enum_method(cx: ext_ctxt,
710710

711711
// Create the nonmatching pattern body.
712712
let nonmatching_expr = build::mk_bool(cx, span, !is_eq);
713-
let nonmatching_body_block = build::mk_simple_block(cx,
714-
span,
715-
nonmatching_expr);
713+
let nonmatching_body_block =
714+
build::mk_simple_block(cx,
715+
span,
716+
nonmatching_expr);
716717

717718
// Create the nonmatching arm.
718719
let nonmatching_arm = {

0 commit comments

Comments
 (0)