Merge pull request #602 from replicatedhq/el-analyze-typo-20220615

Update analyze.go - fix typo
This commit is contained in:
Edgar Lanting
2022-07-01 15:50:24 +02:00
committed by GitHub
+2 -2
View File
@@ -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 {