diff --git a/src/Lean/Parser/Term.lean b/src/Lean/Parser/Term.lean index c1510a4ed9..ce582bbb3f 100644 --- a/src/Lean/Parser/Term.lean +++ b/src/Lean/Parser/Term.lean @@ -138,7 +138,9 @@ def optSemicolon (p : Parser) : Parser := /-- A specific universe in Lean's infinite hierarchy of universes. -/ @[builtin_term_parser] def sort := leading_parser "Sort" >> optional (checkWsBefore "" >> checkPrec leadPrec >> checkColGt >> levelParser maxPrec) -/-- The universe of propositions. `Prop ≡ Sort 0`. -/ +/-- The universe of propositions. `Prop ≡ Sort 0`. + +Every proposition is propositionally equal to either `True` or `False`. -/ @[builtin_term_parser] def prop := leading_parser "Prop" /--