Skip to content

Commit

Permalink
DE-1363 Fix Go Report Card issues (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtopc authored Dec 1, 2024
1 parent c0799ad commit 974314f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion http_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
)

// HTTPClient is a wrapper arround http.Client
// HTTPClient is a wrapper around http.Client
type HTTPClient struct {
client *http.Client
apiKeyPublic string
Expand Down
2 changes: 1 addition & 1 deletion http_client_mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (c *HTTPClientMock) With(headers map[string]string) HTTPClientInterface {
return c
}

// Read allow you to bind the response recieved through the underlying http client
// Read allow you to bind the response received through the underlying http client
func (c *HTTPClientMock) Read(response interface{}) HTTPClientInterface {
c.fx.Read(response)
return c
Expand Down
2 changes: 1 addition & 1 deletion tests/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func testSendMail() {
FromEmail: data[0].Email,
FromName: data[0].Name,
Recipients: []mailjet.Recipient{
mailjet.Recipient{
{
Email: data[0].Email,
},
},
Expand Down

0 comments on commit 974314f

Please sign in to comment.