From 3775ee04565d03928442c708c8f33472eebbf149 Mon Sep 17 00:00:00 2001 From: Benjamin Webb <40066515+webb-ben@users.noreply.github.com> Date: Sat, 7 Sep 2024 14:48:02 -0400 Subject: [PATCH] Fix typo --- internal/common/stats.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/common/stats.go b/internal/common/stats.go index bc237417..9197c829 100644 --- a/internal/common/stats.go +++ b/internal/common/stats.go @@ -95,7 +95,7 @@ func (c *RunStats) Output() string { out := fmt.Sprintln("RunStats:") out += fmt.Sprintf(" Start: %s\n", c.Date) out += fmt.Sprintf(" Reason: %s\n", c.StopReason) - out += fmt.Sprintf(" Soruce:\n") + out += fmt.Sprintf(" Source:\n") for name, repo := range c.RepoStats { out += fmt.Sprintf(" - name: %s\n", name) @@ -113,7 +113,7 @@ func (c *RepoStats) Output() string { out := fmt.Sprintln("SourceStats:") out += fmt.Sprintf(" Start: %s\n", c.Start) out += fmt.Sprintf(" End: %s\n", c.End) - out += fmt.Sprintf(" Soruce:\n") + out += fmt.Sprintf(" Source:\n") out += fmt.Sprintf(" - name: %s\n", c.Name) for r, count := range c.counts {