Skip to content

Commit b83901f

Browse files
authored
Merge branch 'exolivelits' into patchwork-view
2 parents 53fccf6 + 8857267 commit b83901f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/haz3lcore/pretty/ExpToSegment.re

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,8 @@ let rec exp_to_pretty = (~settings: Settings.t, exp: Exp.t): pretty => {
14011401
let+ p = pat_to_pretty(~settings: Settings.t, p)
14021402
and+ thm = go(thm)
14031403
and+ e = go(e);
1404-
let e = settings.inline ? e : [Secondary(mk_newline(Id.mk()))] @ e;
1404+
let e =
1405+
settings.inline == Inline ? e : [Secondary(mk_newline(Id.mk()))] @ e;
14051406
wrap(exp, [mk_form(Theorem, id, [p, thm])] @ e);
14061407
| ProofObject(t) =>
14071408
let id = exp |> Exp.rep_id;

0 commit comments

Comments
 (0)