aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-05-26 13:39:13 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-05-26 13:39:13 -0400
commite120fdb97e3af76198eadc8a44e6feb732b4dd83 (patch)
tree428ee28c2f1e69fc79e5731e0571103f4bf73678 /misc
parente29f58bf853d0cd4825cb590ba973a9d9ab7ea36 (diff)
downloadgit-bug-e120fdb97e3af76198eadc8a44e6feb732b4dd83.tar.gz
refactor: use namespace instead of application of applicationName
Diffstat (limited to 'misc')
-rw-r--r--misc/random_bugs/cmd/main.go4
1 files changed, 2 insertions, 2 deletions
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)
}