From a30957409d299e62096c13aa8300ea0288f1e4bc Mon Sep 17 00:00:00 2001 From: Davood Date: Fri, 26 Sep 2025 21:46:53 +0200 Subject: [PATCH] fix typos in both comment and error message (#2199) Signed-off-by: davood --- pkg/app/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/app/app.go b/pkg/app/app.go index badf2ecd..aa73fbb2 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -199,7 +199,7 @@ func (a *App) Diff(c DiffConfigProvider) error { } if c.DetailedExitcode() && (len(allDiffDetectedErrs) > 0 || affectedAny) { - // We take the first release error w/ exit status 2 (although all the defered errs should have exit status 2) + // We take the first release error w/ exit status 2 (although all the deferred errs should have exit status 2) // to just let helmfile itself to exit with 2 // See https://github.com/roboll/helmfile/issues/749 code := 2 @@ -680,7 +680,7 @@ func (a *App) within(dir string, do func() error) error { prev, err := a.fs.Getwd() if err != nil { - return fmt.Errorf("failed getting current working direcotyr: %v", err) + return fmt.Errorf("failed getting current working directory: %v", err) } absDir, err := a.fs.Abs(dir)