diff options
author | 2014-03-24 14:58:42 +0000 | |
---|---|---|
committer | 2014-03-24 14:58:42 +0000 | |
commit | 91f110e064cd7c194e59e019b83bb7496c1c84d4 (patch) | |
tree | 3e8e577405dba7e94b43cbf21c22f21aaa5ab949 /gnu/usr.bin/perl/pod/perlpacktut.pod | |
parent | do not call purge_task every 10 secs, it is only needed once at startup and (diff) | |
download | wireguard-openbsd-91f110e064cd7c194e59e019b83bb7496c1c84d4.tar.xz wireguard-openbsd-91f110e064cd7c194e59e019b83bb7496c1c84d4.zip |
Import perl-5.18.2
OK espie@ sthen@ deraadt@
Diffstat (limited to 'gnu/usr.bin/perl/pod/perlpacktut.pod')
-rw-r--r-- | gnu/usr.bin/perl/pod/perlpacktut.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/pod/perlpacktut.pod b/gnu/usr.bin/perl/pod/perlpacktut.pod index 2ce56622b75..b0b5bdfd7f4 100644 --- a/gnu/usr.bin/perl/pod/perlpacktut.pod +++ b/gnu/usr.bin/perl/pod/perlpacktut.pod @@ -85,7 +85,7 @@ with ASCII character coding, it will print C<0123456789>. Let's suppose you've got to read in a data file like this: Date |Description | Income|Expenditure - 01/24/2001 Ahmed's Camel Emporium 1147.99 + 01/24/2001 Zed's Camel Emporium 1147.99 01/28/2001 Flea spray 24.99 01/29/2001 Camel rides to tourists 235.00 @@ -200,7 +200,7 @@ how much we've spent: Oh, hmm. That didn't quite work. Let's see what happened: - 01/24/2001 Ahmed's Camel Emporium 1147.99 + 01/24/2001 Zed's Camel Emporium 1147.99 01/28/2001 Flea spray 24.99 01/29/2001 Camel rides to tourists 1235.00 03/23/2001Totals 1235.001172.98 @@ -225,7 +225,7 @@ additional spaces to line up our fields, like this: but they don't translate to spaces in the output.) Here's what we got this time: - 01/24/2001 Ahmed's Camel Emporium 1147.99 + 01/24/2001 Zed's Camel Emporium 1147.99 01/28/2001 Flea spray 24.99 01/29/2001 Camel rides to tourists 1235.00 03/23/2001 Totals 1235.00 1172.98 |