Subject: | typo in File::Fu::File pod |
It says this in the SYNOPSIS:
use File::Fu;
my $file = File::Fu->new("path/to/file");
I think you mean:
use File::Fu;
my $file = File::Fu::File->new("path/to/file");
It would be very nice to be able to say File::Fu->new($path) without
knowing whether $path was a file or directory ahead of time!