summaryrefslogtreecommitdiff
path: root/time.go
diff options
context:
space:
mode:
Diffstat (limited to 'time.go')
-rw-r--r--time.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/time.go b/time.go
index 17f4fb5..df89d24 100644
--- a/time.go
+++ b/time.go
@@ -20,10 +20,10 @@ func Time(someTimeAgoOrLaterNotsure any) string {
return fmt.Sprintf("%-28.28s", guess)
}
if errors.Is(err, Broken) {
- return fmt.Sprintf("%-28.28s", "cobol.Time() Broken")
+ return fmt.Sprintf("%-28.28s", "Broken cobol.Time()")
}
if errors.Is(err, NoTime) {
- return fmt.Sprintf("%-28.28s", "cobol.Time() NoTime")
+ return fmt.Sprintf("%-28.28s", "NoTime cobol.Time()")
}
return fmt.Sprintf("%-28.28s", " / / : : (notsure)")
}