Skip to content

Commit 16146d9

Browse files
committed
fix: Updates message text
1 parent 1eec4a3 commit 16146d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/verify/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ func ValidLaunchTemplateID(v any, k string) (ws []string, errors []error) {
330330
errors = append(errors, fmt.Errorf("%q cannot be longer than 255 characters", k))
331331
} else if !regexache.MustCompile(`^lt\-[0-9a-z]+$`).MatchString(value) {
332332
errors = append(errors, fmt.Errorf(
333-
"%q must begin with 'lt-' and comprise only alphanumeric characters: %v", k, value))
333+
"%q must begin with 'lt-' and only contain alphanumeric characters: %v", k, value))
334334
}
335335
return
336336
}

0 commit comments

Comments
 (0)