Subject: | POD error |
Nice module! I just found it today while browsing CPAN. It will come in very handy on my current project.
While exercising the example code from the Synopsis, I found an error in the format string for the hash example:
my %hash = calendar_list('DD-MM-YYYY' => 'DDEXT MONTH YEAR', \%hash01);
should be
my %hash = calendar_list('DD-MM-YYYY' => 'DDEXT MONTH YYYY', \%hash01);
Note the differences in the YEAR format. I'm just getting started so don't know if this is an issue with my system (I'm not using Date::iCal) or simply an error in the example.
William