From 31f276dd5814f379d3e2b837887531632e595dae Mon Sep 17 00:00:00 2001 From: Chuanying Du Date: Wed, 18 Dec 2019 10:59:20 -0800 Subject: [PATCH] fix comments --- cmd/git-sync/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/git-sync/main.go b/cmd/git-sync/main.go index 6765fcb..3313bfd 100644 --- a/cmd/git-sync/main.go +++ b/cmd/git-sync/main.go @@ -583,7 +583,7 @@ func revIsHash(ctx context.Context, rev, gitRoot string) (bool, error) { // returns (1) whether a change occured, (2) the new hash, and (3) an error if one happened func syncRepo(ctx context.Context, repo, branch, rev string, depth int, gitRoot, dest string, authUrl string) (bool, string, error) { if authUrl != "" { - // For Auth Callback URL, the credentials behind is dynamic, it needs to be + // For ASKPASS Callback URL, the credentials behind is dynamic, it needs to be // re-fetched each time. if err := setupGitAskPassURL(ctx); err != nil { return false, "", fmt.Errorf("failed to call GIT_ASKPASS_URL: %v", err)