diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-26 12:17:47 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-09-04 16:13:25 -0600 |
commit | 3e81cfaf6781302a0cd8f9c06ee9c9b60a5067e3 (patch) | |
tree | d812d400b819b8bc28a89f9c95c400a8aa860b8f /autodoc.pl | |
parent | 183f6e5936433c844545b5c7ca19d3ad0e14fb06 (diff) | |
download | perl-3e81cfaf6781302a0cd8f9c06ee9c9b60a5067e3.tar.gz |
autodo: Enclose elements with C<...>
This make all-caps ones look better
Diffstat (limited to 'autodoc.pl')
-rw-r--r-- | autodoc.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc.pl b/autodoc.pl index 62264e7bec..54b154b664 100644 --- a/autodoc.pl +++ b/autodoc.pl @@ -343,7 +343,7 @@ sub docout ($$$) { # output the docs for one function } for my $item ($element_name, @items) { - print $fh "\n=item $item\n"; + print $fh "\n=item C<$item>\n"; # If we're printing only a link to an element, this isn't the major entry, # so no X<> here. |