Skip to content

Commit

Permalink
Fix spelling for log messages (#50917)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenGravy authored Jan 13, 2025
1 parent b507ebe commit 8e513b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/tsh/common/git_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ func (c *gitConfigCommand) doUpdate(cf *CLIConf) error {
for _, url := range strings.Split(urls, "\n") {
u, err := parseGitSSHURL(url)
if err != nil {
logger.DebugContext(cf.Context, "Skippig URL", "error", err, "url", url)
logger.DebugContext(cf.Context, "Skipping URL", "error", err, "url", url)
continue
}
if !u.isGitHub() {
logger.DebugContext(cf.Context, "Skippig non-GitHub host", "host", u.Host)
logger.DebugContext(cf.Context, "Skipping non-GitHub host", "host", u.Host)
continue
}

Expand Down

0 comments on commit 8e513b4

Please sign in to comment.