diff options
| -rw-r--r-- | doc/changelog/07-commands-and-options/11746-remove-chapter.rst | 3 | ||||
| -rw-r--r-- | vernac/g_vernac.mlg | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/changelog/07-commands-and-options/11746-remove-chapter.rst b/doc/changelog/07-commands-and-options/11746-remove-chapter.rst new file mode 100644 index 0000000000..0316432b0a --- /dev/null +++ b/doc/changelog/07-commands-and-options/11746-remove-chapter.rst @@ -0,0 +1,3 @@ +- **Removed:** undocumented ``Chapter`` command. Use :cmd:`Section` + instead (`#11746 <https://github.com/coq/coq/pull/11746>`_, by Théo + Zimmermann). diff --git a/vernac/g_vernac.mlg b/vernac/g_vernac.mlg index a1cdc718d7..6de20c64a5 100644 --- a/vernac/g_vernac.mlg +++ b/vernac/g_vernac.mlg @@ -552,7 +552,6 @@ GRAMMAR EXTEND Gram { VernacDeclareModule (export, id, bl, mty) } (* Section beginning *) | IDENT "Section"; id = identref -> { VernacBeginSection id } - | IDENT "Chapter"; id = identref -> { VernacBeginSection id } (* This end a Section a Module or a Module Type *) | IDENT "End"; id = identref -> { VernacEndSegment id } |
