From e120fdb97e3af76198eadc8a44e6feb732b4dd83 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Thu, 26 May 2022 13:39:13 -0400 Subject: refactor: use namespace instead of application of applicationName --- misc/random_bugs/cmd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'misc/random_bugs/cmd/main.go') diff --git a/misc/random_bugs/cmd/main.go b/misc/random_bugs/cmd/main.go index b017439e..c3506efb 100644 --- a/misc/random_bugs/cmd/main.go +++ b/misc/random_bugs/cmd/main.go @@ -11,7 +11,7 @@ import ( // This program will randomly generate a collection of bugs in the repository // of the current path func main() { - const gitBugApplicationName = "git-bug" + const gitBugNamespace = "git-bug" dir, err := os.Getwd() if err != nil { @@ -22,7 +22,7 @@ func main() { bug.ClockLoader, } - repo, err := repository.OpenGoGitRepo(dir, gitBugApplicationName, loaders) + repo, err := repository.OpenGoGitRepo(dir, gitBugNamespace, loaders) if err != nil { panic(err) } -- cgit