Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Lean/PrettyPrinter/Delaborator/Options.lean
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ register_builtin_option pp.unicode.fun : Bool := {
}
register_builtin_option pp.match : Bool := {
defValue := true
descr := "(pretty printer) disable/enable 'match' notation"
descr := "(pretty printer) disable/enable `match` notation"
}
register_builtin_option pp.sorrySource : Bool := {
defValue := false
descr := "(pretty printer) if true, pretty print 'sorry' with its originating source position, if available"
descr := "(pretty printer) if true, pretty print `sorry` with its originating source position, if available"
}
register_builtin_option pp.coercions : Bool := {
defValue := true
Expand Down
6 changes: 3 additions & 3 deletions src/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.lean
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ register_builtin_option pp.analyze.typeAscriptions : Bool := {

register_builtin_option pp.analyze.trustSubst : Bool := {
defValue := false
descr := "(pretty printer analyzer) always 'pretend' applications that can delab to ▸ are 'regular'"
descr := "(pretty printer analyzer) always \"pretend\" applications that can delab to ▸ are \"regular\""
}

register_builtin_option pp.analyze.trustOfNat : Bool := {
defValue := true
descr := "(pretty printer analyzer) always 'pretend' `OfNat.ofNat` applications can elab bottom-up"
descr := "(pretty printer analyzer) always \"pretend\" `OfNat.ofNat` applications can elab bottom-up"
}

register_builtin_option pp.analyze.trustOfScientific : Bool := {
defValue := true
descr := "(pretty printer analyzer) always 'pretend' `OfScientific.ofScientific` applications can elab bottom-up"
descr := "(pretty printer analyzer) always \"pretend\" `OfScientific.ofScientific` applications can elab bottom-up"
}

-- TODO: this is an arbitrary special case of a more general principle.
Expand Down
Loading