docs: fix typo Charts.yaml

Signed-off-by: Alexey Igrychev <alexey.igrychev@flant.com>
pull/10224/head
Alexey Igrychev 3 years ago
parent 779d6c559c
commit 5753f61ae3

@ -33,7 +33,7 @@ This command consists of multiple subcommands to display information about a cha
const showAllDesc = ` const showAllDesc = `
This command inspects a chart (directory, file, or URL) and displays all its content 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 = ` const showValuesDesc = `
@ -43,7 +43,7 @@ of the values.yaml file
const showChartDesc = ` const showChartDesc = `
This command inspects a chart (directory, file, or URL) and displays the contents 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 = ` const readmeChartDesc = `

@ -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 // 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) { func (d *Dependency) printMissing(chartpath string, out io.Writer, reqs []*chart.Dependency) {
folder := filepath.Join(chartpath, "charts/*") folder := filepath.Join(chartpath, "charts/*")
files, err := filepath.Glob(folder) files, err := filepath.Glob(folder)

Loading…
Cancel
Save