Fix indent in example

Previously it would look like if `warnings` key is nested under `errors`.
This commit is contained in:
Eugene Pirogov 2016-01-04 16:55:38 +02:00 committed by Adrien Grand
parent 2c87010487
commit d48af9a155

View File

@ -46,19 +46,18 @@ Response:
"buckets" : { "buckets" : {
"errors" : { "errors" : {
"doc_count" : 34, "doc_count" : 34,
"monthly" : { "monthly" : {
"buckets" : [ "buckets" : [
... // the histogram monthly breakdown ... // the histogram monthly breakdown
] ]
} }
}, },
"warnings" : { "warnings" : {
"doc_count" : 439, "doc_count" : 439,
"monthly" : { "monthly" : {
"buckets" : [ "buckets" : [
... // the histogram monthly breakdown ... // the histogram monthly breakdown
] ]
}
} }
} }
} }