Skip to content

Commit 2d8494d

Browse files
committed
caps
1 parent 6d3b0c2 commit 2d8494d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api_client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func (client *ApiClient) do(request *http.Request) (*http.Response, error) {
146146
return client.httpClient.Do(request)
147147
}
148148

149-
// Get peforms an authenticated Get request at the given path.
149+
// Get peforms an authenticated GET request at the given path.
150150
// Includes params in the query string.
151151
func (client *ApiClient) Get(path string, params *url.Values) (*http.Response, error) {
152152
destUrl, err := client.createDestUrl(path, params)
@@ -162,7 +162,7 @@ func (client *ApiClient) Get(path string, params *url.Values) (*http.Response, e
162162
return client.do(request)
163163
}
164164

165-
// Post performs an authenticated Post request at the given path.
165+
// Post performs an authenticated POST request at the given path.
166166
// Includes params in the query string.
167167
// The provided ContentType should describe the content of the body.
168168
func (client *ApiClient) Post(

0 commit comments

Comments
 (0)