From c03cdb4b154f8bb190e89d37cbb2a797aaf3c783 Mon Sep 17 00:00:00 2001 From: James Rodewig Date: Mon, 7 Oct 2019 09:25:03 -0400 Subject: [PATCH] [DOCS] Correct callouts in search template docs (#47655) --- docs/reference/search/search-template.asciidoc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/reference/search/search-template.asciidoc b/docs/reference/search/search-template.asciidoc index 67aa9001c21..aa73e9d3372 100644 --- a/docs/reference/search/search-template.asciidoc +++ b/docs/reference/search/search-template.asciidoc @@ -536,14 +536,14 @@ The `params` would look like: "params": { "text": "words to search for", "line_no": { <1> - "start": 10, <1> - "end": 20 <1> + "start": 10, + "end": 20 } } } ------------------------------------------ // NOTCONSOLE -<1> All three of these elements are optional. +<1> The `line_no`, `start`, and `end` parameters are optional. We could write the query as: @@ -565,13 +565,13 @@ We could write the query as: {{#start}} <3> "gte": "{{start}}" <4> {{#end}},{{/end}} <5> - {{/start}} <3> + {{/start}} {{#end}} <6> "lte": "{{end}}" <7> - {{/end}} <6> + {{/end}} } } - {{/line_no}} <2> + {{/line_no}} } } }