Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
missing colon
  • Loading branch information
mtojek committed Jul 11, 2024
commit 727620d9024cdec4625aaed7a5cea6f33eb99776
4 changes: 2 additions & 2 deletions cli/notifications.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (r *RootCmd) pauseNotifications() *serpent.Command {
NotifierPaused: true,
})
if err != nil {
return xerrors.Errorf("unable to pause notifications %w", err)
return xerrors.Errorf("unable to pause notifications: %w", err)
}

_, _ = fmt.Fprintln(inv.Stderr, "Notifications are now paused.")
Expand All @@ -74,7 +74,7 @@ func (r *RootCmd) resumeNotifications() *serpent.Command {
NotifierPaused: false,
})
if err != nil {
return xerrors.Errorf("unable to resume notifications %w", err)
return xerrors.Errorf("unable to resume notifications: %w", err)
}

_, _ = fmt.Fprintln(inv.Stderr, "Notifications are now resumed.")
Expand Down