Correcting a mistake in InLeapYear() function.

This commit is contained in:
pschwartau%netscape.com 2001-05-29 16:10:58 +00:00
Родитель b9dcf29183
Коммит ee7d187c51
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -345,7 +345,7 @@ function InLeapYear( t ) {
if ( DaysInYear(YearFromTime(t)) == 366 ) {
return 1;
} else {
return "ERROR: DayFromYear("+y+") case not covered";
return "ERROR: InLeapYear("+ t + ") case not covered";
}
}
function YearFromTime( t ) {