fix: missing space after /--

This commit is contained in:
Gabriel Ebner 2021-12-10 20:42:26 +01:00 committed by Sebastian Ullrich
parent 4f81972996
commit b6efece612

View file

@ -16,7 +16,7 @@ def commentBody : Parser :=
@[combinatorParenthesizer Lean.Parser.Command.commentBody] def commentBody.parenthesizer := PrettyPrinter.Parenthesizer.visitToken
@[combinatorFormatter Lean.Parser.Command.commentBody] def commentBody.formatter := PrettyPrinter.Formatter.visitAtom Name.anonymous
def docComment := leading_parser ppDedent $ "/--" >> commentBody >> ppLine
def docComment := leading_parser ppDedent $ "/--" >> ppSpace >> commentBody >> ppLine
end Command
builtin_initialize