Skip to content

Commit 2649237

Browse files
authored
Merge pull request #274 from fluxcd/typo-fix
2 parents 65bebeb + fcc5fc8 commit 2649237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/helmchart_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ func (r *HelmChartReconciler) requestsForBucketChange(o client.Object) []reconci
930930
func validHelmChartName(s string) error {
931931
chartFmt := regexp.MustCompile("^([-a-z0-9]*)$")
932932
if !chartFmt.MatchString(s) {
933-
return fmt.Errorf("invalid chart name %q, a valid name must be lower case letters and numbers and MAY be seperated with dashes (-)", s)
933+
return fmt.Errorf("invalid chart name %q, a valid name must be lower case letters and numbers and MAY be separated with dashes (-)", s)
934934
}
935935
return nil
936936
}

0 commit comments

Comments
 (0)