summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-02-27 19:24:20 +0200
committerPaul Buetow <paul@buetow.org>2025-02-27 19:24:20 +0200
commit6b03a215107e2b4c8dc92b637630aa74e53769c2 (patch)
tree13884b4492994261b4c15485104ba450409c737a /internal
parentad6785b77744ac5d2f29fd79553eb187aa6ae8ef (diff)
fix
Diffstat (limited to 'internal')
-rw-r--r--internal/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/run.go b/internal/run.go
index 27d6aeb..b2ea847 100644
--- a/internal/run.go
+++ b/internal/run.go
@@ -37,7 +37,7 @@ func run(ctx context.Context, args config.Args) error {
sinceLastRun := time.Duration(now-args.Config.LastRunEpoch) * time.Second
if sinceLastRun < args.RunInterval {
- colour.Infoln("Run interval", args.RunInterval, "with", sinceLastRun, "not yet reached. Not posting anything!")
+ colour.Infoln("Run interval of", args.RunInterval, "with", sinceLastRun, "not yet reached. Not posting anything!")
return nil
}