Subject: | Date::Format->language() doesn't work |
The docs say that this will work:
use Date::Format;
Date::Format->language('German');
But that it's considered to be changed to be:
use Date::Language;
my $d = new Date::Language('German');
$d->time2str(blah, blah);
This change has been made already, but without adapting the docs.