summaryrefslogtreecommitdiff
path: root/lib/filetest.pm
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-24 14:41:02 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-24 19:04:48 -0700
commitf703fc96a75eab3db924e41a52531905784836de (patch)
tree3e1d1202c4d1a4efaa959f0af21a57e7babfcacd /lib/filetest.pm
parente58c5aaf5fae1951e56c0433da91fbbfb31b620c (diff)
downloadperl-f703fc96a75eab3db924e41a52531905784836de.tar.gz
Fix various minor pod issues
These were all uncovered by the new Pod::Checker, not yet in core. Fixing these will speed up debugging the new Checker.
Diffstat (limited to 'lib/filetest.pm')
-rw-r--r--lib/filetest.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filetest.pm b/lib/filetest.pm
index b08f1dc910..a4049832e6 100644
--- a/lib/filetest.pm
+++ b/lib/filetest.pm
@@ -1,6 +1,6 @@
package filetest;
-our $VERSION = '1.02';
+our $VERSION = '1.03';
=head1 NAME
@@ -71,7 +71,7 @@ of the operators is a filename, not when it is a filehandle.
Because access() does not invoke stat() (at least not in a way visible
to Perl), B<the stat result cache "_" is not set>. This means that the
outcome of the following two tests is different. The first has the stat
-bits of C</etc/passwd> in C<_>, and in the second case this still
+bits of F</etc/passwd> in C<_>, and in the second case this still
contains the bits of C</etc>.
{ -d '/etc';