diff options
| author | coqbot-app[bot] | 2021-04-19 09:14:24 +0000 |
|---|---|---|
| committer | GitHub | 2021-04-19 09:14:24 +0000 |
| commit | 8a49832ac5a4a9fab564c49ccef7146310db5bab (patch) | |
| tree | 9240ca91e69ff1b938db3f1f588d8075d0fcbca5 /doc/tools | |
| parent | 9fe4108289f584461b5dc7af08095d6279a222af (diff) | |
| parent | 3e006e40fb213943e3e6574174a360ef866b0431 (diff) | |
Merge PR #13815: Improve description of conversions
Reviewed-by: Zimmi48
Ack-by: JasonGross
Diffstat (limited to 'doc/tools')
| -rw-r--r-- | doc/tools/coqrst/coqdomain.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/tools/coqrst/coqdomain.py b/doc/tools/coqrst/coqdomain.py index 1428dae7ef..aa95d4f249 100644 --- a/doc/tools/coqrst/coqdomain.py +++ b/doc/tools/coqrst/coqdomain.py @@ -1180,8 +1180,7 @@ class StdGlossaryIndex(Index): if type == 'term': entries = content[itemname[0].lower()] entries.append([itemname, 0, docname, anchor, '', '', '']) - content = sorted(content.items()) - return content, False + return content.items(), False def GrammarProductionRole(typ, rawtext, text, lineno, inliner, options={}, content=[]): """A grammar production not included in a ``prodn`` directive. |
