chore: add line break between goals

This commit is contained in:
Leonardo de Moura 2020-01-18 16:47:08 -08:00
parent e4fca53deb
commit fed91dcbfa

View file

@ -33,7 +33,7 @@ withMVarContext mvarId $ fun ctx s =>
| EStateM.Result.ok a newS => EStateM.Result.ok a newS.toTermState
def reportUnsolvedGoals (ref : Syntax) (goals : List MVarId) : TermElabM Unit :=
throwError ref $ "unsolved goals" ++ Format.line ++ MessageData.joinSep (goals.map $ MessageData.ofGoal) Format.line
throwError ref $ "unsolved goals" ++ Format.line ++ MessageData.joinSep (goals.map $ MessageData.ofGoal) (Format.line ++ Format.line)
def ensureAssignmentHasNoMVars (ref : Syntax) (mvarId : MVarId) : TermElabM Unit := do
val ← instantiateMVars ref (mkMVar mvarId);