From 824429801308866b22006a0395d42634d1d192cd Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Fri, 6 Sep 2019 08:24:08 +0900 Subject: [PATCH] Fixed grammar in comment --- arn/validate/Validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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