Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben committed Sep 7, 2024
1 parent 4135642 commit 3775ee0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/common/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 {
Expand Down

0 comments on commit 3775ee0

Please sign in to comment.