Skip to content

Commit

Permalink
docs: fix typo Charts.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Igrychev <alexey.igrychev@flant.com>
(cherry picked from commit 5753f61)
  • Loading branch information
alexey-igrychev authored and mattfarina committed Oct 13, 2021
1 parent 96cdab4 commit 2aacc5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/helm/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = `
Expand All @@ -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 = `
Expand Down
2 changes: 1 addition & 1 deletion pkg/action/dependency.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2aacc5f

Please sign in to comment.