Correct error message

pull/1379/head
Jack Christensen 2022-11-12 07:06:54 -06:00
parent 871f14e43b
commit b265fedd75
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ func (scanPlanTextAnyToDateScanner) Scan(src []byte, dst any) error {
case "-infinity":
return scanner.ScanDate(Date{InfinityModifier: -Infinity, Valid: true})
default:
return fmt.Errorf("date too short")
return fmt.Errorf("invalid date format")
}
}