Skip to content

Commit

Permalink
Merge pull request #3 from internetofwater/fix-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben authored Sep 11, 2024
2 parents 4135642 + 3775ee0 commit 6e035d8
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 6e035d8

Please sign in to comment.