File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ FunctionDefinition{
636
636
},
637
637
" unit" : {
638
638
Type: jsonschema.String ,
639
- Enum: []string {" celcius " , " fahrenheit" },
639
+ Enum: []string {" celsius " , " fahrenheit" },
640
640
},
641
641
},
642
642
Required: []string {" location" },
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ func (c *Client) ListAssistants(
181
181
order * string ,
182
182
after * string ,
183
183
before * string ,
184
- ) (reponse AssistantsList , err error ) {
184
+ ) (response AssistantsList , err error ) {
185
185
urlValues := url.Values {}
186
186
if limit != nil {
187
187
urlValues .Add ("limit" , fmt .Sprintf ("%d" , * limit ))
@@ -208,7 +208,7 @@ func (c *Client) ListAssistants(
208
208
return
209
209
}
210
210
211
- err = c .sendRequest (req , & reponse )
211
+ err = c .sendRequest (req , & response )
212
212
return
213
213
}
214
214
Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ func TestClientReturnsRequestBuilderErrors(t *testing.T) {
406
406
}
407
407
}
408
408
409
- func TestClientReturnsRequestBuilderErrorsAddtion (t * testing.T ) {
409
+ func TestClientReturnsRequestBuilderErrorsAddition (t * testing.T ) {
410
410
config := DefaultConfig (test .GetTestToken ())
411
411
client := NewClientWithConfig (config )
412
412
client .requestBuilder = & failingRequestBuilder {}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ type InnerError struct {
23
23
ContentFilterResults ContentFilterResults `json:"content_filter_result,omitempty"`
24
24
}
25
25
26
- // RequestError provides informations about generic request errors.
26
+ // RequestError provides information about generic request errors.
27
27
type RequestError struct {
28
28
HTTPStatusCode int
29
29
Err error
You can’t perform that action at this time.
0 commit comments