Skip to content

Commit

Permalink
cosmetic change
Browse files Browse the repository at this point in the history
  • Loading branch information
nacx committed Feb 16, 2024
1 parent 37f096a commit cad5ee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions group.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ func (e Error) Error() string { return string(e) }
// It is typically returned on --version and --help requests that have been
// served. It can and should be used for custom config phase situations where
// the job of the application is done.
const ErrBailEarlyRequest = Error("exit request from flag handler")
const ErrBailEarlyRequest Error = "exit request from flag handler"

// ErrRequestedShutdown can be used by Service implementations to gracefully
// request a shutdown of the application. Group will then exit without errors.
const ErrRequestedShutdown = Error("shutdown requested")
const ErrRequestedShutdown Error = "shutdown requested"

// FlagSet holds a pflag.FlagSet as well as an exported Name variable for
// allowing improved help usage information.
Expand Down

0 comments on commit cad5ee6

Please sign in to comment.