fix(frontends/lean/pp): pp for mutual definitions
missing line break
This commit is contained in:
parent
cf9a5128c1
commit
323060df26
1 changed files with 1 additions and 1 deletions
|
|
@ -1084,7 +1084,7 @@ auto pretty_fn::pp_equations(expr const & e) -> optional<result> {
|
|||
unsigned eqnidx = 0;
|
||||
for (unsigned fidx = 0; fidx < num_fns; fidx++) {
|
||||
if (num_fns > 1) {
|
||||
r += format("with") + space() + pp(fns[fidx]).fmt() + space() + colon() +
|
||||
r += line() + format("with") + space() + pp(fns[fidx]).fmt() + space() + colon() +
|
||||
space() + pp(mlocal_type(fns[fidx])).fmt();
|
||||
}
|
||||
if (eqnidx >= eqns.size()) return optional<result>();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue