Skip to content

Commit acdec30

Browse files
committed
Wrap long lines.
1 parent c17964c commit acdec30

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/boot/fe/pexp.ml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -559,13 +559,15 @@ and parse_bottom_pexp (ps:pstate) : Ast.pexp =
559559
(Some COMMA) parse_ty) ps
560560
in
561561
let bpos = lexpos ps in
562-
span ps apos bpos (Ast.PEXP_lval (Ast.PLVAL_base (Ast.BASE_app (i, tys))))
562+
span ps apos bpos
563+
(Ast.PEXP_lval (Ast.PLVAL_base (Ast.BASE_app (i, tys))))
563564
end
564565

565566
| _ ->
566567
begin
567568
let bpos = lexpos ps in
568-
span ps apos bpos (Ast.PEXP_lval (Ast.PLVAL_base (Ast.BASE_ident i)))
569+
span ps apos bpos
570+
(Ast.PEXP_lval (Ast.PLVAL_base (Ast.BASE_ident i)))
569571
end
570572
end
571573

0 commit comments

Comments
 (0)