From 70c1d65f06856c185739364d21316a89d4c0dd0b Mon Sep 17 00:00:00 2001 From: James Rodewig Date: Fri, 15 May 2020 08:07:35 -0400 Subject: [PATCH] Update docs/reference/search/request/from-size.asciidoc Co-authored-by: debadair --- docs/reference/search/request/from-size.asciidoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/reference/search/request/from-size.asciidoc b/docs/reference/search/request/from-size.asciidoc index 68c6322006491..17c505d33cf21 100644 --- a/docs/reference/search/request/from-size.asciidoc +++ b/docs/reference/search/request/from-size.asciidoc @@ -5,10 +5,8 @@ By default, the search API returns the top 10 matching documents, starting with the most-relevant document. -To paginate a larger set of search results, you can use the search API's `size` -and `from` parameters. The `from` parameter is a zero-indexed offset from -the first result you want to fetch. The `size` parameter sets the maximum -number of results to return. +To paginate through a larger set of results, you can use the search API's `size` +and `from` parameters. The `size` parameter is the number of matching documents to return. The `from` parameter is a zero-indexed offset from the beginning of the complete result set that indicates the document you want to start with. [IMPORTANT] ====