Skip to content

Commit c77c140

Browse files
refactor(specs): extract results field in a dedicated directory (generated)
algolia/api-clients-automation#5739 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clara Muller <5667350+ClaraMuller@users.noreply.github.com>
1 parent c9518da commit c77c140

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

algoliasearch/src/main/java/com/algolia/model/composition/SearchResultsItem.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public SearchResultsItem<T> setPage(Integer page) {
466466
return this;
467467
}
468468

469-
/** Page of search results to retrieve. minimum: 0 */
469+
/** The current page of the results. */
470470
@javax.annotation.Nonnull
471471
public Integer getPage() {
472472
return page;
@@ -499,7 +499,7 @@ public SearchResultsItem<T> setHitsPerPage(Integer hitsPerPage) {
499499
return this;
500500
}
501501

502-
/** Number of hits per page. minimum: 1 maximum: 1000 */
502+
/** Number of hits returned per page. */
503503
@javax.annotation.Nonnull
504504
public Integer getHitsPerPage() {
505505
return hitsPerPage;
@@ -529,7 +529,7 @@ public SearchResultsItem<T> setQuery(String query) {
529529
return this;
530530
}
531531

532-
/** Search query. */
532+
/** The search query string. */
533533
@javax.annotation.Nonnull
534534
public String getQuery() {
535535
return query;

0 commit comments

Comments
 (0)