Skip to content

Commit

Permalink
Fixed linter's warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshir committed May 11, 2018
1 parent 5de2bdf commit b8f6f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mq.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func New(config Config) (MQ, error) {
func (mq *mq) GetConsumer(name string) (consumer Consumer, err error) {
consumer, ok := mq.consumers.Get(name)
if !ok {
err = fmt.Errorf("Consumer '%s' is not registered. Check your configuration.", name)
err = fmt.Errorf("consumer '%s' is not registered. Check your configuration", name)
}

return
Expand Down

0 comments on commit b8f6f40

Please sign in to comment.