Skip to content

Commit

Permalink
fix(actors): add space after the actor's verb (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
nobe4 authored Jun 18, 2024
1 parent 6b03b2f commit f625b0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/actors/debug/debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
type Actor struct{}

func (_ *Actor) Run(n *notifications.Notification, w io.Writer) error {
fmt.Fprint(w, colors.Yellow("DEBUG"+n.String()))
fmt.Fprint(w, colors.Yellow("DEBUG ")+n.String())

return nil
}
2 changes: 1 addition & 1 deletion internal/actors/done/done.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (a *Actor) Run(n *notifications.Notification, w io.Writer) error {
return err
}

fmt.Fprint(w, colors.Red("DONE")+n.String())
fmt.Fprint(w, colors.Red("DONE ")+n.String())

return nil
}
2 changes: 1 addition & 1 deletion internal/actors/read/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func (a *Actor) Run(n *notifications.Notification, w io.Writer) error {

n.Unread = false

fmt.Fprint(w, colors.Yellow("READ")+n.String())
fmt.Fprint(w, colors.Yellow("READ ")+n.String())

return nil
}

0 comments on commit f625b0a

Please sign in to comment.