summaryrefslogtreecommitdiff
path: root/pod/perlport.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@khw-desktop.(none)>2010-05-05 12:07:42 -0600
committerJesse Vincent <jesse@bestpractical.com>2010-05-08 16:37:54 -0400
commita61fc69c83c7bd85cd6bd9ac19290441703ac7a3 (patch)
treecdd986f2bab651f58ec8e94ea2c96b1c954ae667 /pod/perlport.pod
parent950b09ed5d0f81ca868105f681327fdd1fdc6a87 (diff)
downloadperl-a61fc69c83c7bd85cd6bd9ac19290441703ac7a3.tar.gz
perlport: fix 80 col display; broken link
Diffstat (limited to 'pod/perlport.pod')
-rw-r--r--pod/perlport.pod20
1 files changed, 10 insertions, 10 deletions
diff --git a/pod/perlport.pod b/pod/perlport.pod
index 6439bf8115..19b49c5c44 100644
--- a/pod/perlport.pod
+++ b/pod/perlport.pod
@@ -480,17 +480,17 @@ file name.
To convert $^X to a file pathname, taking account of the requirements
of the various operating system possibilities, say:
- use Config;
- my $thisperl = $^X;
- if ($^O ne 'VMS')
- {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;}
+ use Config;
+ my $thisperl = $^X;
+ if ($^O ne 'VMS')
+ {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;}
To convert $Config{perlpath} to a file pathname, say:
- use Config;
- my $thisperl = $Config{perlpath};
- if ($^O ne 'VMS')
- {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;}
+ use Config;
+ my $thisperl = $Config{perlpath};
+ if ($^O ne 'VMS')
+ {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;}
=head2 Networking
@@ -1089,7 +1089,7 @@ Pumpkings and module integrators can easily see whether files with too many
directory levels have snuck into the core by running the following in the
top-level source directory:
- $ perl -ne "$_=~s/\s+.*//; print if scalar(split /\//) > 8;" < MANIFEST
+ $ perl -ne "$_=~s/\s+.*//; print if scalar(split /\//) > 8;" < MANIFEST
The VMS::Filespec module, which gets installed as part of the build
@@ -1801,7 +1801,7 @@ Available on 64 bit OpenVMS 8.2 and later. (VMS)
=item localtime
-localtime() has the same range as L<gmtime>, but because time zone
+localtime() has the same range as L</gmtime>, but because time zone
rules change its accuracy for historical and future times may degrade
but usually by no more than an hour.