File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ FunctionDefinition{
636636 },
637637 " unit" : {
638638 Type: jsonschema.String ,
639- Enum: []string {" celcius " , " fahrenheit" },
639+ Enum: []string {" celsius " , " fahrenheit" },
640640 },
641641 },
642642 Required: []string {" location" },
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ func (c *Client) ListAssistants(
181181 order * string ,
182182 after * string ,
183183 before * string ,
184- ) (reponse AssistantsList , err error ) {
184+ ) (response AssistantsList , err error ) {
185185 urlValues := url.Values {}
186186 if limit != nil {
187187 urlValues .Add ("limit" , fmt .Sprintf ("%d" , * limit ))
@@ -208,7 +208,7 @@ func (c *Client) ListAssistants(
208208 return
209209 }
210210
211- err = c .sendRequest (req , & reponse )
211+ err = c .sendRequest (req , & response )
212212 return
213213}
214214
Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ func TestClientReturnsRequestBuilderErrors(t *testing.T) {
406406 }
407407}
408408
409- func TestClientReturnsRequestBuilderErrorsAddtion (t * testing.T ) {
409+ func TestClientReturnsRequestBuilderErrorsAddition (t * testing.T ) {
410410 config := DefaultConfig (test .GetTestToken ())
411411 client := NewClientWithConfig (config )
412412 client .requestBuilder = & failingRequestBuilder {}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ type InnerError struct {
2323 ContentFilterResults ContentFilterResults `json:"content_filter_result,omitempty"`
2424}
2525
26- // RequestError provides informations about generic request errors.
26+ // RequestError provides information about generic request errors.
2727type RequestError struct {
2828 HTTPStatusCode int
2929 Err error
You can’t perform that action at this time.
0 commit comments