From 5b7f70d8c5d58c2df249055c8fdb15108bc01bad Mon Sep 17 00:00:00 2001 From: Lucas Medeiros Date: Mon, 28 Jun 2021 08:38:51 -0300 Subject: [PATCH] fix misspelling in comment Signed-off-by: Lucas Medeiros --- pkg/downloader/manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index 6b7ac182e..c34d003f9 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -531,8 +531,8 @@ func (m *Manager) ensureMissingRepos(repoNames map[string]string, deps []*chart. // is not configured. if !m.SkipUpdate && len(ru) > 0 { - // Some dependencies might have a diferent names but point to the same repository - // after creating a unique key we should remove duplicated entries to avoid unecessary work + // Some dependencies might have a different names but point to the same repository + // after creating a unique key we should remove duplicated entries to avoid unnecessary work ru = removeDuplicates(ru) fmt.Fprintln(m.Out, "Getting updates for unmanaged Helm repositories...")