Browse Source

[DOCS] Fix typo (#82344) (#82379)

(cherry picked from commit 129d0fc91d43224bcfc62692fdd934e2cef423e3)

Co-authored-by: Oleks <oleks@users.noreply.github.com>
James Rodewig 3 years ago
parent
commit
ccac525d90

+ 1 - 1
docs/reference/aggregations/bucket/geodistance-aggregation.asciidoc

@@ -4,7 +4,7 @@
 <titleabbrev>Geo-distance</titleabbrev>
 ++++
 
-A multi-bucket aggregation that works on `geo_point` fields and conceptually works very similar to the <<search-aggregations-bucket-range-aggregation,range>> aggregation. The user can define a point of origin and a set of distance range buckets. The aggregation evaluate the distance of each document value from the origin point and determines the buckets it belongs to based on the ranges (a document belongs to a bucket if the distance between the document and the origin falls within the distance range of the bucket).
+A multi-bucket aggregation that works on `geo_point` fields and conceptually works very similar to the <<search-aggregations-bucket-range-aggregation,range>> aggregation. The user can define a point of origin and a set of distance range buckets. The aggregation evaluates the distance of each document value from the origin point and determines the buckets it belongs to based on the ranges (a document belongs to a bucket if the distance between the document and the origin falls within the distance range of the bucket).
 
 [source,console,id=geodistance-aggregation-example]
 --------------------------------------------------