We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa838a commit 2ed81ceCopy full SHA for 2ed81ce
templates/go/search_helpers.mustache
@@ -363,7 +363,7 @@ func (c *APIClient) BrowseRules(
363
)
364
},
365
func(response *SearchRulesResponse, err error) (bool, error) {
366
- return err != nil || (response != nil && int32(len(response.Hits)) < hitsPerPage), err
+ return err != nil || (response != nil && len(response.Hits) < int(hitsPerPage)), err
367
368
opts...,
369
@@ -409,7 +409,7 @@ func (c *APIClient) BrowseSynonyms(
409
410
411
func(response *SearchSynonymsResponse, err error) (bool, error) {
412
413
414
415
0 commit comments