summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-07-02 14:01:12 -0600
committerKarl Williamson <khw@cpan.org>2022-07-02 14:51:13 -0600
commit52a83b1c4e465687829f078b942112866a9ec300 (patch)
tree8970cf2652e7385828f4a4dd5140e01074228046 /autodoc.pl
parent2c84391f45feddfd9411a9d6114804a9d6b208d1 (diff)
downloadperl-52a83b1c4e465687829f078b942112866a9ec300.tar.gz
perlapi: Sort X<> tags
This is just to minimize difference listings between versions of this file, as these don't actually get displayed in the pod.
Diffstat (limited to 'autodoc.pl')
-rw-r--r--autodoc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc.pl b/autodoc.pl
index 5bbf5d3176..d586826f36 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -1719,7 +1719,7 @@ sub output {
print $fh "\n=head1 $section_name\n";
if ($section_info->{X_tags}) {
- print $fh "X<$_>" for keys $section_info->{X_tags}->%*;
+ print $fh "X<$_>" for sort keys $section_info->{X_tags}->%*;
print $fh "\n";
delete $section_info->{X_tags};
}