Skip to content

Commit 727620d

Browse files
committed
missing colon
1 parent c8d208a commit 727620d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/notifications.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func (r *RootCmd) pauseNotifications() *serpent.Command {
5050
NotifierPaused: true,
5151
})
5252
if err != nil {
53-
return xerrors.Errorf("unable to pause notifications %w", err)
53+
return xerrors.Errorf("unable to pause notifications: %w", err)
5454
}
5555

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

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

0 commit comments

Comments
 (0)