aboutsummaryrefslogtreecommitdiffstats
path: root/misc/random_bugs/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'misc/random_bugs/cmd')
-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)
}