Text should be lowercase

This commit is contained in:
Arran Ubels 2023-02-15 16:04:58 +11:00
parent 515cd81767
commit eabb56b497
No known key found for this signature in database
GPG Key ID: 135EDC7B21D17F48

View File

@ -133,7 +133,7 @@ const (
var (
// ErrAmbiguousMMDD for date formats such as 04/02/2014 the mm/dd vs dd/mm are
// ambiguous, so it is an error for strict parse rules.
ErrAmbiguousMMDD = fmt.Errorf("This date has ambiguous mm/dd vs dd/mm type format")
ErrAmbiguousMMDD = fmt.Errorf("this date has ambiguous mm/dd vs dd/mm type format")
)
func unknownErr(datestr string) error {