From 4afa12cfe53a5d235ed0c2e4f746c14f22166c8a Mon Sep 17 00:00:00 2001 From: Alex Moros Marco Date: Thu, 25 Jan 2018 11:35:50 +0100 Subject: [PATCH] [Docs] Fix explanation for `from` and `size` example (#28320) --- docs/reference/getting-started.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/getting-started.asciidoc b/docs/reference/getting-started.asciidoc index e280657fb148a..21397359c71e3 100755 --- a/docs/reference/getting-started.asciidoc +++ b/docs/reference/getting-started.asciidoc @@ -691,7 +691,7 @@ curl -XPOST 'localhost:9200/bank/_search?pretty' -d ' Note that if `size` is not specified, it defaults to 10. -This example does a `match_all` and returns documents 11 through 20: +This example does a `match_all` and returns documents 10 through 19: [source,sh] --------------------------------------------------