Skip to content

Commit

Permalink
Indent pod tables in pod to text.
Browse files Browse the repository at this point in the history
Helps to set off the table slightly. Minor change, passes all
6.c/d tests regarding pod =tables.
  • Loading branch information
coke committed Mar 15, 2018
1 parent ab391c2 commit 57af8b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Pod/To/Text.pm6
Expand Up @@ -74,7 +74,7 @@ sub table2text($pod) {
}
for @rows -> $row {
# Gutter of two spaces between columns
$ret ~= join ' ',
$ret ~= ' ' ~ join ' ',
(@maxes Z=> @$row).map: { .value.fmt("%-{.key}s") };
$ret ~= "\n";
}
Expand Down

0 comments on commit 57af8b8

Please sign in to comment.