Skip to content

Commit

Permalink
fix type in error message (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuens authored and mthenw committed Oct 13, 2017
1 parent 31799d1 commit f27f8cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subscriptions/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type ErrSubscriptionAlreadyExists struct {
}

func (e ErrSubscriptionAlreadyExists) Error() string {
return fmt.Sprintf("Subscription %q already exits.", e.ID)
return fmt.Sprintf("Subscription %q already exists.", e.ID)
}

// ErrSubscriptionValidation occurs when subscription payload doesn't validate.
Expand Down

0 comments on commit f27f8cf

Please sign in to comment.