Skip to content

Commit

Permalink
Fix missing =back in pod #206
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Jul 18, 2023
1 parent b9622d8 commit d3f0836
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/bcd
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ sub printonecard {
my $ustr = uc $str;

# top of card
print q{ }, '_' x $Cols, "\n";
print q{ }, '_' x $Cols, "\n";

# line of text. Leave a blank if the character doesn't have
# a hole pattern.
Expand All @@ -100,7 +100,7 @@ sub printonecard {
}

my $remain = $Cols - scalar(@chars);
print q{ } x $remain, "|\n";
print q{ } x $remain, "|\n";

# 12 rows of potential holes; output a ']', which looks kind of
# like a hole, if the appropriate bit is set in the Holes[] table.
Expand Down Expand Up @@ -168,6 +168,8 @@ The following options are available:
Create punch cards with 80 columns. The default is 48 columns.
=back
=head1 AUTHOR
Written by Steve Hayman. Translated to Perl by Michael Mikonos.
Expand Down

0 comments on commit d3f0836

Please sign in to comment.