diff --git a/arn/validate/Validate.go b/arn/validate/Validate.go index ffc633c4..6148d32f 100644 --- a/arn/validate/Validate.go +++ b/arn/validate/Validate.go @@ -58,7 +58,7 @@ func Date(date string) bool { return err == nil } -// YearMonth tells you whether the date contain only the year and the month. +// YearMonth tells you whether the date contains only the year and the month. func YearMonth(date string) bool { if len(date) != len(YearMonthFormat) || strings.HasPrefix(date, "0001") { return false