Skip to content

Commit be12f15

Browse files
committed
[ur] Sort experimental feature toctree order
Change the order of experimental features in the reStructuredText `.. toctree::` to be alphabetically sorted. This align the order experimental features are displayed in the *Experimental Features* section with the *API Documentation* section.
1 parent eebffa7 commit be12f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/templates/exp-features.rst.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import glob
55
expdocs = []
66
for section in sections:
77
foundDocs = glob.glob(section + "/EXP-*.rst")
8-
for found in foundDocs:
8+
for found in sorted(foundDocs):
99
expdocs.append(found)
1010
%>
1111
=====================

0 commit comments

Comments
 (0)