From b6f4172ff9d7f5258a5d1d4b6cb39d718a9e0771 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Tue, 2 Aug 2022 22:21:38 +0200 Subject: [PATCH] s/iterim/interim/ --- cmd/csaf_aggregator/interim.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/csaf_aggregator/interim.go b/cmd/csaf_aggregator/interim.go index 5cc32ad..4ca23b8 100644 --- a/cmd/csaf_aggregator/interim.go +++ b/cmd/csaf_aggregator/interim.go @@ -144,7 +144,7 @@ func (w *worker) checkInterims( return nil, err } - // Check if we can remove this advisory as it is not iterim any more. + // Check if we can remove this advisory as it is not interim any more. var status string if err := w.expr.Extract(statusExpr, util.StringMatcher(&status), true, doc); err != nil { return nil, err @@ -256,7 +256,7 @@ func joinErrors(errs []error) error { func (p *processor) interim() error { if !p.cfg.runAsMirror() { - return errors.New("iterim in lister mode does not work") + return errors.New("interim in lister mode does not work") } queue := make(chan *interimJob) @@ -325,7 +325,7 @@ func writeInterims(interimsCSV string, interims []interimsEntry) error { } // readInterims scans a interims.csv file for matching -// iterim advisories. Its sorted with youngest +// interim advisories. Its sorted with youngest // first, so we can stop scanning if entries get too old. // It returns two slices: The advisories that are young enough // and a slice of the advisories that are too old.