diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-07-16 13:20:29 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-16 13:57:19 -0600 |
commit | 4113778512b941aa672cfc75ea55036abaf7cc3b (patch) | |
tree | 87a73cf7f4c197f49481a5f5727b1ab57b19b667 /lib | |
parent | 4daee454664fa55eb0388383fdc21b96e7eceb0b (diff) | |
download | perl-4113778512b941aa672cfc75ea55036abaf7cc3b.tar.gz |
basename: Change C<> to L<>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/File/Basename.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/File/Basename.pm b/lib/File/Basename.pm index 486eba1bbf..e6681d2616 100644 --- a/lib/File/Basename.pm +++ b/lib/File/Basename.pm @@ -54,7 +54,7 @@ our(@ISA, @EXPORT, $VERSION, $Fileparse_fstype, $Fileparse_igncase); require Exporter; @ISA = qw(Exporter); @EXPORT = qw(fileparse fileparse_set_fstype basename dirname); -$VERSION = "2.82"; +$VERSION = "2.83"; fileparse_set_fstype($^O); @@ -91,7 +91,7 @@ portion is removed and becomes the $suffix. # On Unix returns ("baz", "/foo/bar/", ".txt") fileparse("/foo/bar/baz.txt", qr/\.[^.]*/); -If type is non-Unix (see C<fileparse_set_fstype()>) then the pattern +If type is non-Unix (see L</fileparse_set_fstype>) then the pattern matching for suffix removal is performed case-insensitively, since those systems are not case-sensitive when opening existing files. |