aboutsummaryrefslogtreecommitdiff
path: root/cmd/krino/log.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/krino/log.go')
-rw-r--r--cmd/krino/log.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/krino/log.go b/cmd/krino/log.go
index bfe61a2..e3e9dd1 100644
--- a/cmd/krino/log.go
+++ b/cmd/krino/log.go
@@ -74,8 +74,8 @@ func cmdLog(g *globals, args []string, stdout, stderr io.Writer) int {
if err != nil {
// journal.Runs (via Engine.Runs) fails closed on a genuine read
// error - permissions, a corrupt file - and that must stay
- // distinguishable from the ordinary "no log yet" case below rather
- // than collapsing into the same message (dispatch notes).
+ // distinguishable from the ordinary "no log yet" case below
+ // rather than collapsing into the same message.
if errors.Is(err, os.ErrNotExist) {
fmt.Fprintln(stdout, "nothing logged yet")
return 0
@@ -84,9 +84,9 @@ func cmdLog(g *globals, args []string, stdout, stderr io.Writer) int {
return 1
}
// A log file can exist and still hold no runs (a real run with nothing
- // actionable still opens the journal - dispatch notes). That is just as
- // ordinary as no log file at all: same message, same exit 0, and no
- // table header is printed over zero rows.
+ // actionable still opens the journal). That is just as ordinary as no
+ // log file at all: same message, same exit 0, and no table header is
+ // printed over zero rows.
if len(runs) == 0 {
fmt.Fprintln(stdout, "nothing logged yet")
return 0