Skip to content

Commit 2cbaddb

Browse files
committed
updated asciidocs after updating links to aggs-vs-aggregations
1 parent 4854287 commit 2cbaddb

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

docs/aggregations/bucket/date-histogram/date-histogram-aggregation-usage.asciidoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ Be sure to read the Elasticsearch documentation on {ref_current}/search-aggregat
2727

2828
=== Handling responses
2929

30-
Using the `.Aggs` aggregation helper on `ISearchResponse<T>`, we can fetch our aggregation results easily
31-
in the correct type. <<aggs-vs-aggregations, Be sure to read more about .Aggs vs .Aggregations>>
30+
The `AggregateDictionary found on `.Aggregations` on `ISearchResponse<T>` has several helper methods
31+
so we can fetch our aggregation results easily in the correct type.
32+
<<handling-aggregate-response, Be sure to read more about these helper methods>>
3233

3334
==== Handling Responses
3435

docs/aggregations/bucket/date-range/date-range-aggregation-usage.asciidoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ Be sure to read the Elasticsearch documentation on {ref_current}/search-aggregat
2525

2626
=== Handling Responses
2727

28-
Using the `.Agg` aggregation helper we can fetch our aggregation results easily
29-
in the correct type. <<aggs-vs-aggregations, Be sure to read more about .Aggs vs .Aggregations>>
28+
The `AggregateDictionary found on `.Aggregations` on `ISearchResponse<T>` has several helper methods
29+
so we can fetch our aggregation results easily in the correct type.
30+
<<handling-aggregate-response, Be sure to read more about these helper methods>>
3031

3132
==== Handling Responses
3233

docs/aggregations/bucket/filter/filter-aggregation-usage.asciidoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ Be sure to read the Elasticsearch documentation on {ref_current}/search-aggregat
2222

2323
=== Handling Responses
2424

25-
Using the `.Aggs` aggregation helper we can fetch our aggregation results easily
26-
in the correct type. <<aggs-vs-aggregations, Be sure to read more about .Aggs vs .Aggregations>>
25+
The `AggregateDictionary found on `.Aggregations` on `ISearchResponse<T>` has several helper methods
26+
so we can fetch our aggregation results easily in the correct type.
27+
<<handling-aggregate-response, Be sure to read more about these helper methods>>
2728

2829
==== Handling Responses
2930

docs/aggregations/bucket/filters/filters-aggregation-usage.asciidoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ Be sure to read the Elasticsearch documentation {ref_current}/search-aggregation
2626

2727
==== Handling Responses
2828

29-
Using the `.Agg` aggregation helper we can fetch our aggregation results easily
30-
in the correct type. <<aggs-vs-aggregations, Be sure to read more about .Aggs vs .Aggregations>>
29+
The `AggregateDictionary found on `.Aggregations` on `ISearchResponse<T>` has several helper methods
30+
so we can fetch our aggregation results easily in the correct type.
31+
<<handling-aggregate-response, Be sure to read more about these helper methods>>
3132

3233
[source,csharp]
3334
----
@@ -58,8 +59,9 @@ namedResult.DocCount.Should().Be(0);
5859

5960
==== Handling Responses
6061

61-
Using the `.Agg` aggregation helper we can fetch our aggregation results easily
62-
in the correct type. <<aggs-vs-aggregations, Be sure to read more about .Aggs vs .Aggregations>>
62+
The `AggregateDictionary found on `.Aggregations` on `ISearchResponse<T>` has several helper methods
63+
so we can fetch our aggregation results easily in the correct type.
64+
<<handling-aggregate-response, Be sure to read more about these helper methods>>
6365

6466
[source,csharp]
6567
----

0 commit comments

Comments
 (0)