浏览代码

[Docs] Fix Typo

Fixes small typo in the geo_distance aggregation docs.
Chris Simpson 12 年之前
父节点
当前提交
4f8c916eed
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/reference/search/aggregations/bucket/geodistance-aggregation.asciidoc

+ 2 - 2
docs/reference/search/aggregations/bucket/geodistance-aggregation.asciidoc

@@ -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 `
         }
     }
 }
---------------------------------------------------
+--------------------------------------------------