Skip to content

Commit 34dc1bd

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 bad2174 commit 34dc1bd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/scala/algoliasearch/composition/SearchHits.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import org.json4s._
3636
* Search results (hits). Hits are records from your index that match the search criteria, augmented with additional
3737
* attributes, such as, for highlighting.
3838
* @param query
39-
* Search query.
39+
* The search query string.
4040
* @param params
4141
* URL-encoded string of all search parameters.
4242
*/

src/main/scala/algoliasearch/composition/SearchPagination.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ package algoliasearch.composition
3131
/** SearchPagination
3232
*
3333
* @param page
34-
* Page of search results to retrieve.
34+
* The current page of the results.
3535
* @param nbHits
3636
* Number of results (hits).
3737
* @param nbPages
3838
* Number of pages of results.
3939
* @param hitsPerPage
40-
* Number of hits per page.
40+
* Number of hits returned per page.
4141
*/
4242
case class SearchPagination(
4343
page: Int,

src/main/scala/algoliasearch/composition/SearchResultsItem.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,18 +82,18 @@ import org.json4s._
8282
* @param automaticInsights
8383
* Whether automatic events collection is enabled for the application.
8484
* @param page
85-
* Page of search results to retrieve.
85+
* The current page of the results.
8686
* @param nbHits
8787
* Number of results (hits).
8888
* @param nbPages
8989
* Number of pages of results.
9090
* @param hitsPerPage
91-
* Number of hits per page.
91+
* Number of hits returned per page.
9292
* @param hits
9393
* Search results (hits). Hits are records from your index that match the search criteria, augmented with additional
9494
* attributes, such as, for highlighting.
9595
* @param query
96-
* Search query.
96+
* The search query string.
9797
* @param params
9898
* URL-encoded string of all search parameters.
9999
*/

0 commit comments

Comments
 (0)