Skip to content

Commit

Permalink
fix: typo in error logging message
Browse files Browse the repository at this point in the history
From #16
  • Loading branch information
crejb authored and hbagdi committed Dec 4, 2019
1 parent a6a841a commit 9e49e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kong/kong.go
Expand Up @@ -145,7 +145,7 @@ func (c *Client) Do(ctx context.Context, req *http.Request,
//Make the request
resp, err := c.client.Do(req)
if err != nil {
return nil, errors.Wrap(err, "making HTTP reqeust")
return nil, errors.Wrap(err, "making HTTP request")
}

// log the response
Expand Down

0 comments on commit 9e49e2c

Please sign in to comment.