summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-12 04:30:43 -0500
committerJeff Carr <[email protected]>2025-10-12 04:30:43 -0500
commit890782893d553cb6dfdb42368b75fa9e8e893ff5 (patch)
tree74ae2c16e7d38669052eedb3508db8880dba5d87 /structs.go
parent12195649cd8610533082d2cfb10568fe4c080a4d (diff)
moved formatting to lib/cobol
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index 86d686c..bdc43fc 100644
--- a/structs.go
+++ b/structs.go
@@ -8,7 +8,7 @@ import (
"strings"
"go.wit.com/dev/alexflint/arg"
- "go.wit.com/lib/config"
+ "go.wit.com/lib/cobol"
)
/*
@@ -40,7 +40,7 @@ type AutoArgs struct {
// print out auto complete debugging info
func (pb *Auto) PrintDebug() {
dur := pb.Duration.AsDuration()
- pb.Debugf("AUTOCOMPLETE: arg0='%s' arg1='%s' partial='%s' cmd='%s' age=%s argv=%v\n", pb.Arg0, pb.Arg1, pb.Partial, pb.Cmd, config.FormatDuration(dur), pb.Argv)
+ pb.Debugf("AUTOCOMPLETE: arg0='%s' arg1='%s' partial='%s' cmd='%s' age=%s argv=%v\n", pb.Arg0, pb.Arg1, pb.Partial, pb.Cmd, cobol.FormatDuration(dur), pb.Argv)
}
func (pb *Auto) WriteHelp() {