From 5753f61ae35c2507b3116d84662d45f51cfa2099 Mon Sep 17 00:00:00 2001 From: Alexey Igrychev Date: Thu, 7 Oct 2021 16:31:48 +0100 Subject: [PATCH] docs: fix typo Charts.yaml Signed-off-by: Alexey Igrychev --- cmd/helm/show.go | 4 ++-- pkg/action/dependency.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/helm/show.go b/cmd/helm/show.go index ee56e4666..ef45a6019 100644 --- a/cmd/helm/show.go +++ b/cmd/helm/show.go @@ -33,7 +33,7 @@ This command consists of multiple subcommands to display information about a cha const showAllDesc = ` This command inspects a chart (directory, file, or URL) and displays all its content -(values.yaml, Charts.yaml, README) +(values.yaml, Chart.yaml, README) ` const showValuesDesc = ` @@ -43,7 +43,7 @@ of the values.yaml file const showChartDesc = ` This command inspects a chart (directory, file, or URL) and displays the contents -of the Charts.yaml file +of the Chart.yaml file ` const readmeChartDesc = ` diff --git a/pkg/action/dependency.go b/pkg/action/dependency.go index 6a284d762..3265f1f17 100644 --- a/pkg/action/dependency.go +++ b/pkg/action/dependency.go @@ -193,7 +193,7 @@ func (d *Dependency) printDependencies(chartpath string, out io.Writer, c *chart } // printMissing prints warnings about charts that are present on disk, but are -// not in Charts.yaml. +// not in Chart.yaml. func (d *Dependency) printMissing(chartpath string, out io.Writer, reqs []*chart.Dependency) { folder := filepath.Join(chartpath, "charts/*") files, err := filepath.Glob(folder)