[Docs] Fix Typo

Fixes small typo in the geo_distance aggregation docs.
This commit is contained in:
Chris Simpson 2013-12-17 15:55:25 +00:00 committed by Luca Cavanna
parent b865047125
commit 4f8c916eed
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[[search-aggregations-bucket-geodistance-aggregation]]
=== Geo Distance
A multi-bucket aggregation that works on `geo_point` fields and onceptually 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 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).
[source,js]
--------------------------------------------------
@ -100,4 +100,4 @@ There are two distance calculation modes: `arc` (the default) and `plane`. The `
}
}
}
--------------------------------------------------
--------------------------------------------------