diff options
| author | Clément Pit-Claudel | 2020-04-02 17:18:30 -0400 |
|---|---|---|
| committer | Clément Pit-Claudel | 2020-04-02 17:18:30 -0400 |
| commit | 4950d9631383acc5c4383d9c6d0a597f8d3206b3 (patch) | |
| tree | f27b37d9d0f46237631f54d1eec142196a1aadc7 /doc/tools | |
| parent | 1806d3f6d43020c3219186416b4c63e80af2f11c (diff) | |
| parent | 9df2a43d5336ceb67a8da45f7b64c074b090790f (diff) | |
Merge PR #11869: Add an index for attributes.
Reviewed-by: cpitclaudel
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 6332c4c81d..b448d0f9d3 100644 --- a/doc/tools/coqrst/coqdomain.py +++ b/doc/tools/coqrst/coqdomain.py @@ -1092,7 +1092,6 @@ class CoqVernacIndex(CoqSubdomainsIndex): class CoqTacticIndex(CoqSubdomainsIndex): name, localname, shortname, subdomains = "tacindex", "Tactic Index", "tactics", ["tacn"] -# Attribute index is generated but not included in output class CoqAttributeIndex(CoqSubdomainsIndex): name, localname, shortname, subdomains = "attrindex", "Attribute Index", "attributes", ["attr"] @@ -1217,7 +1216,7 @@ class CoqDomain(Domain): 'g': CoqCodeRole } - indices = [CoqVernacIndex, CoqTacticIndex, CoqOptionIndex, CoqGallinaIndex, CoqExceptionIndex] + indices = [CoqVernacIndex, CoqTacticIndex, CoqOptionIndex, CoqGallinaIndex, CoqExceptionIndex, CoqAttributeIndex] data_version = 1 initial_data = { |
