From d0b088af9ab3964c08a0cda77176f357854cf8be Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Wed, 4 Dec 2024 12:13:25 +0100 Subject: [PATCH] s/.git/[leafName] Co-authored-by: Pieter Noordhuis --- libs/git/info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/git/info.go b/libs/git/info.go index 3b03835f4..ac583c1dd 100644 --- a/libs/git/info.go +++ b/libs/git/info.go @@ -154,7 +154,7 @@ func findLeafInTree(p string, leafName string) (string, error) { _, err = os.Stat(filepath.Join(p, leafName)) if err == nil { - // found .git in p + // Found [leafName] in p return p, nil }