Subject: | Documentation improvement |
The synopsis could make it clearer that the year and month numbers defined by POSIX are a bit funky.
($sec, $min, $hour, $mday, $month_from_zero, $year_minus_1900, $wday, $yday)
= POSIX::strptime(string, format);
$month = $month_from_zero + 1;
$year = $year_minus_1900 + 1900;