From af7ae3f3d0e5105e8718673ff4eb631eb81e115a Mon Sep 17 00:00:00 2001 From: Myron Marston Date: Thu, 12 Dec 2024 00:26:43 -0800 Subject: [PATCH] Website: fix grammar in a few places. --- config/site/src/query-api/aggregations/sub-aggregations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/site/src/query-api/aggregations/sub-aggregations.md b/config/site/src/query-api/aggregations/sub-aggregations.md index aaf3fb40..b926dfce 100644 --- a/config/site/src/query-api/aggregations/sub-aggregations.md +++ b/config/site/src/query-api/aggregations/sub-aggregations.md @@ -14,14 +14,14 @@ within the overall `Artist` type: * `Artist.tours[].shows` ElasticGraph supports aggregations on these nested fields via `subAggregations`. This can be used -to aggregation directly on the data of one of these fields. For example, this query returns the +to aggregate directly on the data of one of these fields. For example, this query returns the total sales for all albums of all artists: {% highlight graphql %} {{ site.data.music_queries.aggregations.TotalAlbumSales }} {% endhighlight %} -Sub-aggregations can also be performed under the groupings of an outer aggregations. For example, +Sub-aggregations can also be performed under the groupings of an outer aggregation. For example, this query returns the total album sales grouped by the home country of the artist: {% highlight graphql %}