From 3f4dcd9758003d53581a4a55b253bf044bd20897 Mon Sep 17 00:00:00 2001 From: Bobby DeSimone Date: Sat, 11 Jan 2020 10:19:30 -0800 Subject: [PATCH] typos Signed-off-by: Bobby DeSimone --- cmd/helm/install.go | 2 +- pkg/action/install.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/install.go b/cmd/helm/install.go index e9c73190c..b8229f974 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -142,7 +142,7 @@ func addInstallFlags(f *pflag.FlagSet, client *action.Install, valueOpts *values f.BoolVar(&client.Atomic, "atomic", false, "if set, installation process purges chart on fail. The --wait flag will be set automatically if --atomic is used") f.BoolVar(&client.SkipCRDs, "skip-crds", false, "if set, no CRDs will be installed. By default, CRDs are installed if not already present") f.BoolVar(&client.SubNotes, "render-subchart-notes", false, "if set, render subchart notes along with the parent") - f.StringVarP(&client.ReleaseName, "name", "", "", "The release name (and omit NAME parameter)") + f.StringVarP(&client.ReleaseName, "name", "", "", "the release name (and omit NAME parameter)") addValueOptionsFlags(f, valueOpts) addChartPathOptionsFlags(f, &client.ChartPathOptions) } diff --git a/pkg/action/install.go b/pkg/action/install.go index af36f0f80..809557fac 100644 --- a/pkg/action/install.go +++ b/pkg/action/install.go @@ -553,7 +553,7 @@ func (i *Install) NameAndChart(args []string) (string, string, error) { return errors.New("cannot set --name-template and also specify a name") } if i.ReleaseName != "" { - return errors.New("cannot set --name and also specify specify a name argument") + return errors.New("cannot set --name and also specify a name argument") } return nil }