From fcc5fc8d324bfe5ffb6bef4bd3f66375df5d7928 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Mon, 1 Feb 2021 14:58:51 +0100 Subject: [PATCH] typo: 'seperated' -> 'separated' Signed-off-by: Hidde Beydals --- controllers/helmchart_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/helmchart_controller.go b/controllers/helmchart_controller.go index 0c6f86aa..e470fcb2 100644 --- a/controllers/helmchart_controller.go +++ b/controllers/helmchart_controller.go @@ -930,7 +930,7 @@ func (r *HelmChartReconciler) requestsForBucketChange(o client.Object) []reconci func validHelmChartName(s string) error { chartFmt := regexp.MustCompile("^([-a-z0-9]*)$") if !chartFmt.MatchString(s) { - return fmt.Errorf("invalid chart name %q, a valid name must be lower case letters and numbers and MAY be seperated with dashes (-)", s) + return fmt.Errorf("invalid chart name %q, a valid name must be lower case letters and numbers and MAY be separated with dashes (-)", s) } return nil }