From 7b3b188bdc1341963cf6a0353d63c61b7dae4575 Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Sat, 29 Jan 2022 12:09:33 -0800 Subject: [PATCH] git/git.go: uppercase URL in message We convert a log message to use the uppercase acronym "URL" instead of the lowercase variant. Note that this message is not yet passed as a translation string, but we will address that issue in a subsequent commit. --- git/git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/git.go b/git/git.go index 6493d585..9aa700ab 100644 --- a/git/git.go +++ b/git/git.go @@ -545,7 +545,7 @@ func ValidateRemoteURL(remote string) error { case "ssh", "http", "https", "git", "file": return nil default: - return fmt.Errorf("invalid remote url protocol %q in %q", u.Scheme, remote) + return fmt.Errorf("invalid remote URL protocol %q in %q", u.Scheme, remote) } }