Subject: | bug in POD for Path::Class::File |
Date: | Mon, 24 May 2010 09:25:09 +0200 |
To: | "bug-Path-Class [...] rt.cpan.org" <bug-Path-Class [...] rt.cpan.org> |
From: | "Bursian, Achim" <achim.bursian [...] siemens.com> |
Littel bug in POD for Path::Class::File, header "is_absolute" is duplicated.
Cheers!
Current (0.18):
---------------------
=item $file->is_absolute
Returns true or false depending on whether the file refers to an
absolute path specifier (like C</usr/local/foo.txt> or C<\Windows\Foo.txt>).
=item $file->is_absolute
Returns true or false depending on whether the file refers to a
relative path specifier (like C<lib/foo.txt> or C<.\Foo.txt>).
---------------------
should be
---------------------
=item $file->is_absolute
Returns true or false depending on whether the file refers to an
absolute path specifier (like C</usr/local/foo.txt> or C<\Windows\Foo.txt>).
=item $file->is_relative
Returns true or false depending on whether the file refers to a
relative path specifier (like C<lib/foo.txt> or C<.\Foo.txt>).