From d48af9a155d87bdfc589fdb8d0ebfd62d72b1564 Mon Sep 17 00:00:00 2001 From: Eugene Pirogov Date: Mon, 4 Jan 2016 16:55:38 +0200 Subject: [PATCH] Fix indent in example Previously it would look like if `warnings` key is nested under `errors`. --- .../bucket/filters-aggregation.asciidoc | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/docs/reference/aggregations/bucket/filters-aggregation.asciidoc b/docs/reference/aggregations/bucket/filters-aggregation.asciidoc index 3e81e99eb99..322dccb790f 100644 --- a/docs/reference/aggregations/bucket/filters-aggregation.asciidoc +++ b/docs/reference/aggregations/bucket/filters-aggregation.asciidoc @@ -46,19 +46,18 @@ Response: "buckets" : { "errors" : { "doc_count" : 34, - "monthly" : { - "buckets" : [ - ... // the histogram monthly breakdown - ] - } - }, - "warnings" : { - "doc_count" : 439, - "monthly" : { - "buckets" : [ - ... // the histogram monthly breakdown - ] - } + "monthly" : { + "buckets" : [ + ... // the histogram monthly breakdown + ] + } + }, + "warnings" : { + "doc_count" : 439, + "monthly" : { + "buckets" : [ + ... // the histogram monthly breakdown + ] } } }