summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-12 15:20:41 -0600
committerKarl Williamson <khw@cpan.org>2022-05-12 15:22:23 -0600
commit9d663ab6ea2ef13d5c222859dc58bde7d3ec5118 (patch)
treeba748bbd2cff741547d34707031a57894e835adf /autodoc.pl
parent7f3d11024c530ddd1c716f16c35364abc5101bc4 (diff)
downloadperl-9d663ab6ea2ef13d5c222859dc58bde7d3ec5118.tar.gz
autodoc.pl: Fix line wrap
It was failing to account for the 1 column indent for verbatim lines
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 5931e0e0ce..92a4a9c1fc 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -1566,7 +1566,7 @@ sub construct_missings_section {
# not be completely filled)
$rows = (@missings + $columns - 1) / $columns;
- my $row_width = 0;
+ my $row_width = 1; # For 1 space indent
my $i = 0; # Which missing element
# For each column ...