Fixing typos

Signed-off-by: Mads Jensen <atombrella@users.noreply.github.com>
pull/31647/head
Mads Jensen 1 week ago
parent 00c6b47d99
commit 5e2851fbf3

@ -20,7 +20,7 @@ import (
"fmt"
)
// ErrNoTable exists due to compatibilty with API users
// ErrNoTable exists due to compatibility with API users
//
//nolint:errname
type ErrNoTable = NoTableError
@ -32,7 +32,7 @@ type NoTableError struct {
func (e NoTableError) Error() string { return fmt.Sprintf("%q is not a table", e.Key) }
// ErrNoValue exists due to compatibilty with API users
// ErrNoValue exists due to compatibility with API users
//
//nolint:errname
type ErrNoValue = NoValueError
@ -44,7 +44,7 @@ type NoValueError struct {
func (e NoValueError) Error() string { return fmt.Sprintf("%q is not a value", e.Key) }
// ErrInvalidChartName exists due to compatibilty with API users
// ErrInvalidChartName exists due to compatibility with API users
//
//nolint:errname
type ErrInvalidChartName = InvalidChartNameError

@ -45,6 +45,9 @@ import (
"helm.sh/helm/v4/pkg/repo/v1"
)
// ErrRepoNotFound is maintained for backwards compatibility for API users
//
//nolint:errname
type ErrRepoNotFound = RepoNotFoundError
// RepoNotFoundError indicates that chart repositories can't be found in local repo cache.

Loading…
Cancel
Save