summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 01:34:32 -0600
committerJeff Carr <[email protected]>2024-01-18 01:34:32 -0600
commitf3d6daa29eccbaeb7b9b1709b4ddffe010c00bd0 (patch)
tree038e8e6183c95333f90153129d2c17cbdf099125 /args.go
parent939e87c2e960424fdb00849273fb1e1c2d871aad (diff)
fix paths
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/args.go b/args.go
index e42476e..bb9e793 100644
--- a/args.go
+++ b/args.go
@@ -27,11 +27,11 @@ func ArgDebug() bool {
func init() {
arg.Register(&argDebugger)
- full := "go.wit.com/gui/debugger"
+ full := "go.wit.com/bug/debugger"
short := "bugger"
INFO = log.NewFlag("INFO", false, full, short, "simple debugging Info()")
POLL = log.NewFlag("POLL", false, full, short, "watch the debugger poll things")
- CHAN = log.NewFlag("CHAN", true, full, short, "chan() test code output")
- WARN = log.NewFlag("WARN", true, full, short, "should warn the user")
+ CHAN = log.NewFlag("CHAN", true, full, short, "chan() test code output")
+ WARN = log.NewFlag("WARN", true, full, short, "should warn the user")
}