Lean4
/-- Adaptation notes are comments that are used to indicate that a piece of code
has been changed to accommodate a change in Lean core.
They typically require further action/maintenance to be taken in the future. -/
@[command_parser 1000]
public meta def adaptationNoteCmd : Lean.ParserDescr✝ :=
ParserDescr.node✝ `adaptationNoteCmd 1022
(ParserDescr.binary✝ `andthen (ParserDescr.symbol✝ "#adaptation_note ")
(ParserDescr.unary✝ `optional (ParserDescr.const✝ `docComment)))