We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5deca89 commit fe24cc5Copy full SHA for fe24cc5
internal/sms-gateway/handlers/messages/params.go
@@ -23,7 +23,7 @@ type thirdPartyGetQueryParams struct {
23
24
func (p *thirdPartyGetQueryParams) Validate() error {
25
if p.StartDate != "" && p.EndDate != "" && p.StartDate > p.EndDate {
26
- return errors.New("`from` date must be before `to` date") //nolint:err113 // won't used directly
+ return errors.New("`from` date must be before `to` date") //nolint:err113 // won't be used directly
27
}
28
29
return nil
0 commit comments