diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-06-18 14:34:55 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-06-21 07:59:02 -0600 |
commit | f4d05d5f5d33ca0c43ac538cc7c55f19815809b2 (patch) | |
tree | 88a25917e8c8aa21020f430c2cb0fc92c55cb511 /lib | |
parent | 2fdfa3ee4e0e02c924e807a2ae6f965203e410f3 (diff) | |
download | perl-f4d05d5f5d33ca0c43ac538cc7c55f19815809b2.tar.gz |
File::Find pod: fix link issue
Diffstat (limited to 'lib')
-rw-r--r-- | lib/File/Find.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/File/Find.pm b/lib/File/Find.pm index cdcf97e0a7..f2fe20b332 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -3,7 +3,7 @@ use 5.006; use strict; use warnings; use warnings::register; -our $VERSION = '1.19'; +our $VERSION = '1.20'; require Exporter; require Cwd; @@ -114,7 +114,7 @@ Causes symbolic links to be followed. Since directory trees with symbolic links (followed) may contain files more than once and may even have cycles, a hash has to be built up with an entry for each file. This might be expensive both in space and time for a large -directory tree. See I<follow_fast> and I<follow_skip> below. +directory tree. See L</follow_fast> and L</follow_skip> below. If either I<follow> or I<follow_fast> is in effect: =over 6 |