Skip to content

Commit d04b902

Browse files
committed
resourcewatch: Fix typo in git_store.go
1 parent b8e63a4 commit d04b902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/resourcewatch/git/git_store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const (
4242
// into a Git repository. Each change is stored as separate commit which means a full history of the
4343
// resource lifecycle is preserved.
4444
func NewGitStorage(path string) (*GitStorage, error) {
45-
// If the repo does not exists, do git init
45+
// If the repo does not exist, do git init
4646
if _, err := os.Stat(filepath.Join(path, ".git")); os.IsNotExist(err) {
4747
_, err := git.PlainInit(path, false)
4848
if err != nil {

0 commit comments

Comments
 (0)