From ae0a74eb1c333c3fc6d2e8d81e59d71c5aa4d332 Mon Sep 17 00:00:00 2001 From: Ian Truslove Date: Thu, 20 Aug 2015 14:57:09 -0600 Subject: [PATCH] Couple of typos - various misspellings of `buckets-path` --- .../aggregations/pipeline/avg-bucket-aggregation.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/aggregations/pipeline/avg-bucket-aggregation.asciidoc b/docs/reference/aggregations/pipeline/avg-bucket-aggregation.asciidoc index 8311f58cdf3..bbd540dc01f 100644 --- a/docs/reference/aggregations/pipeline/avg-bucket-aggregation.asciidoc +++ b/docs/reference/aggregations/pipeline/avg-bucket-aggregation.asciidoc @@ -52,13 +52,13 @@ The following snippet calculates the average of the total monthly `sales`: }, "avg_monthly_sales": { "avg_bucket": { - "buckets_paths": "sales_per_month>sales" <1> + "buckets_path": "sales_per_month>sales" <1> } } } } -------------------------------------------------- -<1> `bucket_paths` instructs this avg_bucket aggregation that we want the (mean) average value of the `sales` aggregation in the +<1> `buckets_path` instructs this avg_bucket aggregation that we want the (mean) average value of the `sales` aggregation in the `sales_per_month` date histogram. And the following may be the response: