From 1e2e7e9aee620b520c7e73dc96c8f057d11dd3e1 Mon Sep 17 00:00:00 2001 From: Edgar Lanting Date: Wed, 15 Jun 2022 16:41:05 +0200 Subject: [PATCH] Update analyze.go - fix typo Fixed a typo in the comments: `analysze` -> `analyze` --- pkg/preflight/analyze.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/preflight/analyze.go b/pkg/preflight/analyze.go index 4d6385af..c995b25a 100644 --- a/pkg/preflight/analyze.go +++ b/pkg/preflight/analyze.go @@ -16,12 +16,12 @@ func (c ClusterCollectResult) Analyze() []*analyze.AnalyzeResult { return doAnalyze(c.AllCollectedData, c.Spec.Spec.Analyzers, nil, "") } -// Analyze runs the analysze phase of host preflight checks +// Analyze runs the analyze phase of host preflight checks func (c HostCollectResult) Analyze() []*analyze.AnalyzeResult { return doAnalyze(c.AllCollectedData, nil, c.Spec.Spec.Analyzers, "") } -// Analyze runs the analysze phase of host preflight checks. +// Analyze runs the analyze phase of host preflight checks. // // Runs the analysis for each node and aggregates the results. func (c RemoteCollectResult) Analyze() []*analyze.AnalyzeResult {